非常簡單,沒有任何類型的配置中檢索數據),我使用命令use meteor
切換到分貝流星隨後進入一些基本數據,以測試:流星無法從MongoDB的
j = { name: "mongo" }
k = { x: 3 }
db.testData.insert(j)
db.testData.insert(k)
我檢查,並通過輸入得到的結果:db.testData.find()
這裏是我的流星代碼提供了MongoDB的訪問只需要在客戶端上:
if (Meteor.isClient) {
Template.hello.greeting = function() {
return "Welcome to test.";
};
Template.hello.events({
'click input' : function() {
// template data, if any, is available in 'this'
if (typeof console !== 'undefined')
console.log("You pressed the button");
}
});
Documents = new Meteor.Collection('testData');
var document = Documents.find();
console.log(document);
var documentCbResults = Documents.find(function(err, items) {
console.log(err);
console.log(items);
});
}
在瀏覽器上的檢查和基於日誌,它說undefined
。從mongodb中檢索數據並顯示到客戶端控制檯,我沒有成功。
我錯過了什麼?