gpt4 book ai didi

javascript - Meteor DDP 发布/订阅

转载 作者:行者123 更新时间:2023-11-29 18:56:39 27 4
gpt4 key购买 nike

我已经设法通过 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com