Recherche…


Les bases de Meteor.call

Meteor.call(name, [arg1, arg2...], [asyncCallback])

(1) nom chaîne
(2) Nom de la méthode à appeler
(3) arg1, arg2 ... objet pouvant être EJSON [facultatif]
(4) Fonction asyncCallback [Facultatif]

D'une part, vous pouvez faire: (via la variable Session , ou via ReactiveVar )

    var syncCall = Meteor.call("mymethod") // Sync call 

Cela signifie que si vous faites quelque chose comme ça, côté serveur, vous ferez:

    Meteor.methods({
        mymethod: function() {
            let asyncToSync =  Meteor.wrapAsync(asynchronousCall);
            // do something with the result;
            return  asyncToSync; 
        }
    });

Par contre, vous voudrez parfois le conserver via le résultat du rappel?

Côté client :

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

Du côté serveur

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
        }
    }
});

Le but ici est de montrer que Meteor propose différentes manières de communiquer entre le client et le serveur.

Utilisation de la variable de session

Du côté serveur

Meteor.methods({
  getData() {
    return 'Hello, world!';
  }
});

Côté client

<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');
  }
});

Utiliser ReactiveVar

Du côté serveur

Meteor.methods({
  getData() {
    return 'Hello, world!';
  }
});

Côté client

<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();
  }
});

package reactive-var requis. Pour l'ajouter, lancez meteor add reactive-var .



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow