我的导师告诉我,我的代码没有遵循web api(sailsjs)中的中间件编程风格。 希望你们能清楚地解释一下。
getSystemInfo: async function (inputs, exits) {
try {
const result = await System.findOne({
id: req.param('id')
}).populate('shops')
.populate('points');
} catch (error) {
return this.exits.errror(error);
}
}