我遵循教程並且不知道什麼是錯誤的。我的cmd根本沒有錯誤。當我打開本地主機:3000我看到這個錯誤無法調用未定義的方法'get',無法加載我的帖子集合中的文章。不能使用mongodb調用未定義的方法'get'使用快遞
var express = require('express');
var router = express.Router();
var mongo = require('mongodb');
var db = require('monk')('localhost/nodeblog');
/* Homepage blog posts */
router.get('/', function(req, res, next) {
var db = req.db;
var posts = db.get('posts');
console.log(posts)
posts.find({},{},function(err,posts){
res.render('index',{
"posts":posts
});
});
});
我的玉
block content
if posts
each post, i in posts
h1=post.title
的可能的複製[類型錯誤:無法調用未定義的方法 'GET'(http://stackoverflow.com/questions/23887849/typeerror-cannot-call-method -get-of-undefined) – chridam