我设法通过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();
  }
});

关于javascript - meteor DDP发布/订阅,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49211775/

10-12 13:49