Meteor Call Returning 404 Method Not Found
Meteor.call('create_question', title, content, function(error, result) { console.log('create_question error ' + error); console.log('create_question
Solution 1:
The method create_question
should be defined on both the client and the server.
You can use this.isSimulation
to figure-out whether the Method is being executed on the server or the client (as a stub).
Post a Comment for "Meteor Call Returning 404 Method Not Found"