我目前正在使用 Express + Node 开发应用程序。我最近使用以下语法.post
向文件添加了一条新路由:app.js
app.post('/api/posts/saveComment', posts.saveComment);
posts
上面定义为:
var posts = require('./routes/posts.js');
并且saveComment
被定义为:
exports.saveComment = function(req, res) {
//function stuff in here, yada yada
}
现在,当我尝试运行应用程序时,节点抛出错误:
Error: .post() requires a callback functions but got a [object Undefined]
saveComment
显然是一个功能,我不明白为什么它看不到这个。我在上面定义了另一个函数saveComment
,我可以完全正确地引用它而不会出错,但是将该函数内容复制到 ofsaveComment
仍然会产生相同的错误。我很茫然,非常感谢任何帮助。
根据要求,内容posts.js
var mongo = require('../mongo.js');
exports.queryAll = function(req, res) {
var db = mongo.db;
db.collection('posts', function(err, collection) {
collection.find().toArray(function(err, doc) {
if (err)
res.send({error:err})
else
res.send(doc)
res.end();
});
});
}
exports.saveCommment = function(req, res) {
var db = mongo.db,
BSON = mongo.BSON,
name = req.body.name,
comment = req.body.comment,
id = req.body.id;
db.collection('posts', function(err, collection) {
collection.update({_id:new BSON.ObjectID(id)}, { $push: { comments: { poster:name, comment:comment }}}, function(err, result) {
if (err) {
console.log("ERROR: " + err);
res.send(err);
}
res.send({success:"success"});
res.end();
});
});
}