我在环回中遇到了一个奇怪的问题,当点击自定义远程方法时,主体将返回未定义状态。我以前使用过环回,但从未遇到过此问题,我不确定在这里缺少什么。有人可以帮忙吗?
Users.greet = function(msg, cb) {
console.log(msg)
cb(null, 'Greetings... ' + msg);
}
Users.remoteMethod('greet', {
accepts: {arg: 'msg', type: 'json', http: { source: 'req' }},
returns: {arg: 'greeting', type: 'string'}
});
当我删除接受中的http标志时,它返回未定义。 预先感谢