我试图从异步回调函数返回的Meteor.method
返回一个值,如下所示:
Meteor.method('myMethod', () => {
asyncFunction(result => {
// Meteor.method should return this result
});
});
我应该在哪里发表return result;
声明?
答案 0 :(得分:0)
你可以试试这个:
Meteor.method('myMethod', () => {
return asyncFunction(result => {
// Meteor.method should return this result
return result;
});
});