Buscar..


Los fundamentos de Meteor.

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

(1) nombre String
(2) Nombre del método a invocar.
(3) arg1, arg2 ... Objeto capaz de EJSON [Opcional]
(4) Función asyncCallback [Opcional]

Por un lado, puede hacer: (a través de la variable Session , o a través de ReactiveVar )

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

Significa que si haces algo como esto, del lado del servidor harás:

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

Por otro lado, a veces querrá mantenerlo a través del resultado de la devolución de llamada.

Lado 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

Lado del servidor

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

El propósito aquí es mostrar que Meteor propone varias formas de comunicación entre el Cliente y el Servidor.

Usando la variable Session

Lado del servidor

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

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

Utilizando ReactiveVar

Lado del servidor

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

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

reactive-var requiere el paquete reactive-var . Para agregarlo ejecute meteor add reactive-var .



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow