Ricerca…
Le basi di Meteor.call
Meteor.call(name, [arg1, arg2...], [asyncCallback])
(1) nome String
(2) Nome del metodo da richiamare
(3) arg1, arg2 ... Oggetto EJSON-capable [Opzionale]
(4) Funzione asyncCallback [Opzionale]
Da un lato, puoi fare: (tramite la variabile Session , o tramite ReactiveVar )
var syncCall = Meteor.call("mymethod") // Sync call
Significa che se fai qualcosa di simile, lato server lo farai:
Meteor.methods({
mymethod: function() {
let asyncToSync = Meteor.wrapAsync(asynchronousCall);
// do something with the result;
return asyncToSync;
}
});
D'altra parte, a volte vorrai tenerlo tramite il risultato della richiamata?
Dalla parte del cliente :
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
Lato server
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
}
}
});
Lo scopo qui è mostrare che Meteor propone vari modi per comunicare tra il Cliente e il Server.
Usando la variabile Session
Lato server
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
Dalla parte del cliente
<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');
}
});
Utilizzando ReactiveVar
Lato server
Meteor.methods({
getData() {
return 'Hello, world!';
}
});
Dalla parte del cliente
<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();
}
});
pacchetto reactive-var
richiesto. Per aggiungerlo esegui meteor add reactive-var
.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow