MEAN.JS Mongoose填充中间件不起作用

时间:2015-03-08 18:51:40

标签: javascript node.js mongodb mongoose meanjs

概要

我正在使用MeanJS作为Web应用程序的完整Web堆栈解决方案来列出用户的文章。它与MEAN.JS默认提供的示例非常相似。

问题

当我调用文章列表http://localhost:3000/articles时,结果集中包含与每篇文章相关联的用户电子邮件和用户名(通过Mongoose Populate函数)。但是,当我检索单篇文章http://localhost:3000/articles/1234567890时,用户信息与文章无关。

我尝试使用 mongoose-relationsip 插件,并将toObject: { virtuals: true }, toJSON: { virtuals: true }添加到文章模型中。两者都没用。

有关详细信息,我已将控制器,路由器和文章对象的模型相关联。

模型

为简单起见,我只为每个对象包含了必要的属性。基本上,我有一个文章对象和一个用户对象(顺便说一句:我使用的是MEAN.JS提供的相同示例)。

articles.server.model.js     '使用严格';

/**
 * Module dependencies.
 */
var mongoose = require('mongoose'),
    Schema = mongoose.Schema,
    relationship = require("mongoose-relationship");    

/**
 * Article Schema
 */
var ArticleSchema = new Schema({
    body: {
        type: String,
        default: '',
        trim: true
    },
    created: {
        type: Date,
        default: Date.now
    },
    user: {
        type: Schema.ObjectId,
        ref: 'User',
        childPath:"articles"
    },
    viewCount: {
        type: Number,
        optional: true,
    },
    comments:[{ 
        type:Schema.ObjectId, 
        ref:"Comment" 
    }],{ 
    strict: true,
    toObject: { virtuals: true },
    toJSON: { virtuals: true }
});    

ArticleSchema.plugin(relationship, { relationshipPathName:'user' });
mongoose.model('Article', ArticleSchema);

articles.server.routes.js

'use strict';

/**
 * Module dependencies.
 */
var users = require('../../app/controllers/users.server.controller'),
    articles = require('../../app/controllers/articles.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)
        .delete(users.requiresLogin, articles.hasAuthorization, articles.delete);

    // Finish by binding the article middleware
    app.param('articleId', articles.articleByID);
};

articles.server.controller.js

'use strict';

/**
 * Module dependencies.
 */
var mongoose = require('mongoose'),
    errorHandler = require('./errors.server.controller'),
    Article = mongoose.model('Article'),
    db=require('./databaseoperations'),
    _ = require('lodash');

/**
 * Show the current article
 */
exports.read = function(req, res) {
    res.json(req.article);
};
/**
 * List of Articles
 */
exports.list = function(req, res) {
    Article.find().populate('user', 'displayName email').exec(function(err, articles) {
        if (err) {
            return res.status(400).send({
                message: errorHandler.getErrorMessage(err)
            });
        } else {
            res.json(articles);
        }
    });
};

/**
 * Article middleware
 */
exports.articleByID = function(req, res, next, id) {
    Article.findById(id).populate('user', 'displayName email').exec(function(err, article) {
        if (err) return next(err);
        if (!article) return next(new Error('Failed to load article ' + id));
        next();
    });
};

非常感谢任何帮助。

感谢。

2 个答案:

答案 0 :(得分:0)

看起来你的文章中间件没有将文章添加到req。在致电next()之前添加此行:

req.article = article;

答案 1 :(得分:0)

在此部分中,您没有将结果分配给req

    exports.articleByID = function(req, res, next, id) {
    Article.findById(id).populate('user', 'displayName email').exec(function(err, article) {
        if (err) return next(err);
        if (!article) return next(new Error('Failed to load article ' + id));
        req.article = article; //THIS PART IS MISSING
        next();
    });
};

因此,当您按ID阅读单篇文章时,请从req.article

返回
exports.read = function(req, res) {
    res.json(req.article);
};