egg-mongose 使用问题(急)
使用egg-mongoose的时候,如何才能够得到代码提示? 比如下面的Merchant后面会有find,findById…等很多方法 再express中使用是会有提示的 大家在使用egg及其插件 在代码提示方面有什么建议么?
'use strict';
const Service = require('egg').Service;
class MerchantService extends Service {
async findOne(clientid) {
const query = { clientid };
// return this.ctx.model.User.find(query).exec();
return this.ctx.model.Merchant.findOne(query).exec();
}
}
module.exports = MerchantService;
6 回复
现在还没有对应的fix插件吧
@DoubleCG 那这样写起来感觉很痛苦啊
用TYpescript
@fengyaogit123 好的 我试下
要自己手写d.ts文件,用egg-sequelize是我自己手写的
来自酷炫的 CNodeMD
趁着提问的时间,已经把 API 都背熟了 哈哈哈~
用 TS 吧~