をクライアント側で最新のデータを取得し、私は流星にサーバーコードをMongoDBのコレクションを作成しました:流星のアプリでサーバーから
//Server
Restaurants = new Mongo.Collection('restaurants')
if (Meteor.isServer) {
//This code only runs on the server
Meteor.publish('restaurants', function() {
return Restaurants.find();
});
}
私はデータ変更するたびに、クライアント側での最新のデータを取得しようとしていますデータベース。
これは私のクライアント側のコードです:
//Client
Restaurants = new Mongo.Collection('restaurants');
var myData = "";
if (Meteor.isClient) {
Meteor.subscribe('restaurants');
myData = Restaurants.find();
};
はあなたに感謝します!
問題は何ですか?あなたは流星ガイドを読んだことがありますか?トラッカーのような感じです。それについて読む。 – MasterAM
多くのありがとうmasterAM..works :) – David