Szukaj…


Podstawy Meteor.call

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

(1) nazwa Ciąg
(2) Nazwa metody do wywołania
(3) arg1, arg2 ... Obiekt obsługujący EJSON [Opcjonalnie]
(4) Funkcja async Callback [Opcjonalnie]

Z jednej strony możesz: (za pomocą zmiennej Session lub ReactiveVar )

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

Oznacza to, że jeśli zrobisz coś takiego, po stronie serwera zrobisz:

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

Z drugiej strony, czasami będziesz chciał zachować to w wyniku wywołania zwrotnego?

Strona klienta :

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

Po stronie serwera

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

Celem jest pokazanie, że Meteor proponuje różne sposoby komunikacji między klientem a serwerem.

Korzystanie ze zmiennej Session

Po stronie serwera

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

Strona klienta

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

Korzystanie z ReactiveVar

Po stronie serwera

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

Strona klienta

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

wymagany pakiet reactive-var . Aby go dodać, uruchom meteor add reactive-var .



Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow