0
私はそうのように、非同期コールバック関数によって返さMeteor.method
から値を返すようにしようとしています:私はreturn result;
文を置くべきメソッドから非同期の結果を返す方法は?
Meteor.method('myMethod',() => {
asyncFunction(result => {
// Meteor.method should return this result
});
});
?
チェックアウトこの1:http://stackoverflow.com/questions/26226583/meteor-proper-use-of-meteor-wrapasync-on-server –