Meteor DDP发布/订阅

时间:2018-03-10 17:11:23

标签: javascript meteor ddp

我已经设法通过DDP连接2个应用程序,但我对如何从源服务器发布数据有点不确定。

以下是我在客户端尝试的内容:

Template.Dashboard.onCreated(function() {
  Meteor.remoteConnection = DDP.connect('http://localhost:3030');
  this.subscribe('templatePublication', {
    connection: Meteor.remoteConnection
  });
});

这应该是在原始服务器上调用发布。它不会抛出任何错误,但同时它不会生成任何文档,因为发布是一个简单的Collection.find({});

只是好奇我是否有遗漏的东西......

1 个答案:

答案 0 :(得分:3)

我解决了这个问题!看来我过于复杂了。看起来你必须这样做(这一切都在客户端):

import { DDP } from 'meteor/ddp-client'

var remote = DDP.connect('http://localhost:3030/');
Templates = new Meteor.Collection('templates', remote);

Template.Dashboard.onCreated(function(){ 
  remote.subscribe('templatePublication');
});

Template.Dashboard.helpers({
  listTemplates: ()=>{
    return Templates.find();
  }
});