web-dev-qa-db-ja.com

Meteor Meteor.methods()で定義されたメソッドを呼び出す方法は?

次のように、Meteorサーバーにメソッドを割り当てています。

Bootstrap.jsで

Meteor.startup(function () {
    Meteor.methods({

        foo: function () {
            return 1;
        },

        bar: function () {

        // QUESTION: HOW TO CALL Meteor.methods.foo
        return 1 + foo;        

        }
    });
});
33
Josh Petitt

Barを呼び出すのと同じ方法:Meteor.call("foo");

サーバー上でコールバックを指定しない場合、メソッドは同期的に実行されます。

Meteor.callのドキュメント:http://docs.meteor.com/#meteor_call

57
greggreg