Skip to content Skip to sidebar Skip to footer

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).

Solution 2:

It may be that another method being called within your create_question method isn't defined.

That was my problem, but the error message still says that the create_question method is the one that's not defined.

Post a Comment for "Meteor Call Returning 404 Method Not Found"