查询方式1
products.findAll({
attributes: ['prdName', 'price'],
include: [{
model: user,
...
yekong
3年前 (2021-08-05)
喜欢
api
// 收藏列表
collectionApi.linPost(
'collection',
'/list',
user.permission('收藏'),
loginRequired,
...
yekong
3年前 (2021-08-05)
喜欢
在使用pm2运行的项目发现一直报502错误,排查过后发现是因为pm2开启了watch后,pm2一直在重启项目造成的,把watch关闭后就搞定了
...
yekong
3年前 (2021-08-04)
喜欢
使用前需要先购买阿里云短信以及相关配置
安装依赖
cnpm i @alicloud/pop-core --save
api
// 发送验证码
smsApi.post('/captcha', async ctx => {
const tel = ct...
yekong
3年前 (2021-08-04)
喜欢
百度地图的api可以查询天气,但是需要是服务端才可以使用,作为前端,没有后端的辅助想要实现的话 就需要借助node和koa2来实现啦
api
smsApi.post('/weather', async ctx => {
console.log(ctx...
yekong
3年前 (2021-08-04)
喜欢
启动app.js应用程序
pm2 start app.js
模式启动4个app.js的应用实例
pm2 start app.js -i 4
启动应用程序并命名为 "api"
pm2 start app.js --name="api"
...
yekong
3年前 (2021-07-28)
喜欢
var m1 = moment('2018-08-14 11:00:00'),
m2 = moment('2018-08-14 12:10:00');
console.log(m1)
console.log(m2)
console.log(...
yekong
3年前 (2021-07-22)
喜欢
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime
最开始安装的最新版v16.5.0
降级到v14后重新安装依赖后正常运行
...
yekong
3年前 (2021-07-18)
喜欢
在 CentOS/RHEL 8 和 Fedora 系统中,Node.js 作为 nodejs 模块而变得可用。
dnf module install nodejs:<stream>
这里的 对应了 Node.js 的主版本。 可以使用如下命令查看可用流的列表:
d...
yekong
3年前 (2021-07-16)
喜欢
mac 关闭所有node进程
pkill node
sudo pkill node
...
yekong
3年前 (2021-07-08)
喜欢