我有代码,基本上仍然是MEANJS样板,我在文章中添加了一个用于评论的部分。我的评论策略是在express / / comment /:commentId中公开一个路由,它有一个非常简单的评论模型(它有一个用户对象,一个内容字符串和一个喜欢的数字)。我扩展了文章模型以包含注释的对象ID数组,并且在加载文章时,我的角度资源将调用/ comments /:commentId来检索数组指定的注释列表。以下是我的服务器代码
/* below is comments.server.controller.js */
/* THIS IS NEVER GETTING CALLED */
exports.updateArticleComments = function(req, res){
Article.findById(req.comment.article).populate('user', 'displayName').exec(function(err, article){
console.log(article);
if (err) return res.json(err);
if (!article) res.json({err: 'oops!'}); //handle this ish
article.comments[article.comments.length] = req.comment._id;
article.save(function(err, article){
if (err){
console.log('error');
} else {
res.json(article);
}
});
});
};
exports.commentsByID = function(req, res, next, id) {
Comment.findById(id).populate('user', 'displayName').exec(function(err, comment) {
if (err) return next(err);
if (!comment) return next(new Error('Failed to load comment ' + id));
req.comment = comment;
next();
});
};
/* end comments.server.controller.js */
/* begin articles.server.routes.js */
'use strict';
/**
* Module dependencies.
*/
var users = require('../../app/controllers/users.server.controller'),
articles = require('../../app/controllers/articles.server.controller'),
comments = require('../../app/controllers/comments.server.controller');
module.exports = function(app) {
// Article Routes
app.route('/articles')
.get(articles.list)
.post(users.requiresLogin, articles.create);
app.route('/articles/:articleId')
.get(articles.read)
.put(users.requiresLogin, articles.hasAuthorization, articles.update)
.post(comments.createComment, comments.updateArticleComments)
.delete(users.requiresLogin, articles.hasAuthorization, articles.delete);
// Finish by binding the article middleware
app.param('articleId', articles.articleByID);
};
/* end articles.server.routes.js */
除了exports.updateArticleComments函数外,一切,我的意思是一切都有效。我已经认真地写了大约5种不同的功能,尝试了lodash的_extend和许多其他技术。我无法弄清楚为什么注释数组永远不会被填充。有人有任何建议吗?
编辑:被要求分享createComment,所以这里是
exports.createComment = function(req, res, next){
var comment = new Comment({content: req.body.content, article: req.body.articleId});
comment.user = req.user;
comment.save(function(comment, err){
if (err){
return res.jsonp(err);
} else {
req.comment = comment;
next();
}
});
};
答案 0 :(得分:0)
Article.update({_id: 'VAL' }, {
$push: {
'comments' : req.comment._id }},{upsert:true},
function(err, data) { });
您是否尝试过推送方法?如果评论_id的值回来而且未定义,我也很好奇。