我想知道我的發佈和訂閱的實現是否正確。即時通訊新的流星js請幫助我。如果您需要更多關於我的代碼的信息,我願意爲您提供其他源代碼。我閱讀有關發佈和訂閱的文檔,但我不明白關於它的文檔。如何正確實現發佈和訂閱流星js
import { Mongo } from 'meteor/mongo';
import { Meteor } from 'meteor/meteor';
import { check } from 'meteor/check';
export const Notes = new Mongo.Collection('notes');
if(Meteor.isServer) {
Meteor.publish('secureData', function() {
return Notes.find({});
});
}
if(Meteor.isClient) {
Meteor.subscribe('secureData');
}
把你的代碼放在這裏不在圖像中。 – pegla
我將您的代碼直接添加到帖子並省略了不必要的行。如果您將代碼直接放入您的帖子中,您下次將獲得較少的回覆。 :) –