Поиск…


Основы Meteor.call

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

(1) имя String
(2) Имя метода для вызова
(3) arg1, arg2 ... Объект, поддерживающий EJSON [Дополнительно]
(4) Функция asyncCallback [Необязательно]

С одной стороны, вы можете делать: (через переменную сеанса или через ReactiveVar )

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

Это означает, что если вы сделаете что-то вроде этого, серверная сторона вы будете делать:

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

С другой стороны, иногда вы захотите сохранить его в результате обратного вызова?

Сторона клиента :

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

Серверная сторона

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

Цель здесь - показать, что Meteor предлагает различный способ связи между Клиентом и Сервером.

Использование переменной сеанса

Серверная сторона

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

Сторона клиента

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

Использование ReactiveVar

Серверная сторона

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

Сторона клиента

<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 . Чтобы добавить его, запустите meteor add reactive-var .



Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow