Sök…
Grunderna i Meteor.call
Meteor.call(name, [arg1, arg2...], [asyncCallback])
(1) name String
(2) Namn på metod att åberopa
(3) arg1, arg2 ... EJSON-kapabla objekt [Valfritt]
(4) asyncCallback-funktion [Valfritt]
Å ena sidan kan du göra: (via Session- variabel eller via ReactiveVar )
var syncCall = Meteor.call("mymethod") // Sync call
Det betyder att om du gör något som det här, server sida gör du:
Meteor.methods({
mymethod: function() {
let asyncToSync = Meteor.wrapAsync(asynchronousCall);
// do something with the result;
return asyncToSync;
}
});
Å andra sidan, ibland vill du behålla det via resultatet av återuppringningen?
Klientsidan :
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
Server sida
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
}
}
});
Syftet här är att visa att Meteor föreslår olika sätt att kommunicera mellan klienten och servern.
Använda Session-variabel
Server sida
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
Klientsidan
<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');
}
});
Använda ReactiveVar
Server sida
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
Klientsidan
<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
paket krävs. För att lägga till det kör meteor add reactive-var
.
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow