サーチ…
Meteor.callの基礎
Meteor.call(name, [arg1, arg2...], [asyncCallback])
(1)name文字列
(2)呼び出すメソッドの名前
(3)arg1、arg2 ... EJSON対応オブジェクト[オプション]
(4)asyncCallback関数[オプション]
一方では、以下を行うことができます:( Session 変数 、またはReactiveVar経由で)
var syncCall = Meteor.call("mymethod") // Sync call
つまり、サーバー側で次のようにします。
Meteor.methods({
mymethod: function() {
let asyncToSync = Meteor.wrapAsync(asynchronousCall);
// do something with the result;
return asyncToSync;
}
});
一方、時にはコールバックの結果によってそれを保持したいことがありますか?
クライアント側 :
Meteor.call("mymethod", argumentObjectorString, function (error, result) {
if (error) Session.set("result", error);
else Session.set("result",result);
}
Session.get("result") -> will contain the result or the error;
//Session variable come with a tracker that trigger whenever a new value is set to the session variable. \ same behavior using ReactiveVar
サーバ側
Meteor.methods({
mymethod: function(ObjectorString) {
if (true) {
return true;
} else {
throw new Meteor.Error("TitleOfError", "ReasonAndMessageOfError"); // This will and up in the error parameter of the Meteor.call
}
}
});
ここでの目的は、Meteorがクライアントとサーバーの間で通信するさまざまな方法を提案することを示すことです。
セッション変数の使用
サーバ側
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
クライアント側
<template name="someData">
{{#if someData}}
<p>{{someData}}</p>
{{else}}
<p>Loading...</p>
{{/if}}
</template>
Template.someData.onCreated(function() {
Meteor.call('getData', function(err, res) {
Session.set('someData', res);
});
});
Template.someData.helpers({
someData: function() {
return Session.get('someData');
}
});
ReactiveVarの使用
サーバ側
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
クライアント側
<template name="someData">
{{#if someData}}
<p>{{someData}}</p>
{{else}}
<p>Loading...</p>
{{/if}}
</template>
Template.someData.onCreated(function() {
this.someData = new ReactiveVar();
Meteor.call('getData', (err, res) => {
this.someData.set(res);
});
});
Template.someData.helpers({
someData: function() {
return Template.instance().someData.get();
}
});
reactive-var
パッケージが必要です。これを追加するには、 meteor add reactive-var
実行します。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow