标签: meteor
如何从meteor.call返回值。请参阅代码以获取更多详细信息。
highlightStroke: "rgb(15,138,12)", data:Meteor.call('dataCallYou', Session.get('areaHome'), function(error,you){ if(_.isEmpty(you)){ you=[0,0,0,0] } })
答案 0 :(得分:0)
Meteor.call是异步任务。
Meteor.call
请参阅How do I return the response from an asynchronous call?