流星 DDP Publication/Subscription

Meteor DDP Publication/Subscription

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

这是我在客户端上尝试的:

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

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

只是好奇我是否遗漏了什么……

我解决了!看来我把它复杂化了。看起来你必须这样做(这一切都在客户端):

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