我正在尝试使用流星 js 做一个非常基本的示例。在我的 lib 文件夹(由客户端和服务器共享)中,我有以下代码
if (typeof hair === 'undefined') {
hair = {};
}
if (!hair.dao) {
hair.dao = {};
}
hair.dao.store = (function() {
return new Meteor.Collection('store');
})();
在文件夹 server/libs 我有这个代码
Meteor.startup(function() {
console.log(hair.dao.store.find().fetch());
});
(其中记录一个元素)
在我的客户端/库文件夹中,我有这个代码
var cursorStores;
cursorStores = hair.dao.store.find();
console.log(cursorStores.fetch());
(不记录任何元素)
它曾经工作,但现在它停止了。
为了清楚我在 Windows 上运行,我删除并再次添加了 autopublish 包。