Meteor.method hangs on call
问题 I have a meteor code that calls an method on the server. The server code executes an API call to the USDA and puts the resulting json set into a array list. The problem is that after the Meteor.call on the client side, it hangs. var ndbItems = []; if (Meteor.isClient) { Template.body.events({ "submit .searchNDB" : function(event) { ndbItems = []; var ndbsearch = event.target.text.value; Meteor.call('getNDB', ndbsearch); console.log("This doesn't show in console."); return false; } }); } if