0

我正在开发一个民意调查应用程序,用户可以在其中为给定民意调查中的选项投票。每个投票都有 2 个或更多选项作为子文档。这些选项中的每一个都具有属于另一个集合中的文档的投票(用于身份验证和唯一投票目的)。

我有投票 CRUD 工作(我可以毫无问题地创建、读取、更新和删除),但是当我尝试创建投票功能时,我的问题就开始了,即更新投票文档 poll_option 子文档 + 创建一个新的投票文档。

poll.server.model.js

'use strict';

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

/**
 * Poll Schema
 */
var PollSchema = new Schema({
    poll_id: {type:Number},
    user: {
        type: Schema.ObjectId,
        ref: 'User'
    },
    poll_question: {type:String},
    poll_language: [{
        type:Schema.ObjectId,
        ref: 'Language'
    }],
    poll_category: [{
        type: Schema.ObjectId,
        ref: 'Category'
    }],
    poll_description: {type:String},
    poll_description_raw: {type:String},
    poll_weight_additional: {type:Number},
    poll_flag_active:{type:Number,default:1},
    poll_flag_18plus:{type:Number,default:0},
    poll_flag_expire:{type:Number,default:0},
    poll_flag_deleted:{type:Number,default:0},
    poll_flag_moderated:{type:Number,default:0},
    poll_flag_favourised:{type:Number,default:0},
    poll_date_expiration:{type:Date},
    poll_date_inserted:{type:Date,default:Date.now},
    poll_flag_updated:{type:Date},
    show_thumbs:{type:Boolean},
    comments: [{
        type: Schema.ObjectId,
        ref: 'Comment'
    }],
    poll_options: [{
        option_text:{type:String},
        option_thumb:{type:Number,default:0},
        votes:[{
            type: Schema.ObjectId,
            ref: 'Vote'
        }]
    }]
});

mongoose.model('Poll', PollSchema);

但是从前面开始,这是前端控制器中的投票功能

// Vote
            $scope.vote = function(){

                $scope.votes = Votes.query();

                var vote = new Votes({
                    _id:pollId,
                    option_id:optionId
                });

                vote.$save(function(response){
                    // ... //
                }, function(errorResponse) {
                    $scope.error = errorResponse.data.message;
                });
            };

这是投票工厂:

angular.module('polls').factory('Votes', [ '$resource', 
    function($resource) {
        return $resource('polls/:pollId/votes/:optionId', {
            pollId: '@_id',
            optionId: '@option_id'
        }, {
            update: {
                method: 'PUT'
            }
        });
    }
]);

到目前为止,一切运行良好,即当我运行 $scope.vote(); 功能我在浏览器控制台中得到这个响应:

POST http://localhost:3000/polls/548c6da001ec1f4ba2860c38/votes/548c6da001ec1f4ba2860c3a 404 (Not Found)

从这里我收集到对该网址的调用,控制器+服务(角度)工作。

按照meanjs文章示例,我知道我需要将optionId参数映射到实际选项

poll.server.route.js

'use strict';

/**
 * Module dependencies.
 */
var users = require('../../app/controllers/users.server.controller'),
    polls = require('../../app/controllers/polls.server.controller');

module.exports = function(app) {
    // Poll Routes
    app.route('/polls')
        .get(polls.list)
        .post(polls.create);

    app.route('/polls/:pollId')
        .get(polls.read)
        .put(polls.update)
        .delete(polls.delete);

    app.route('/polls/:pollId/votes/:optionId')
        .put(polls.vote);

    app.param('pollId', polls.pollByID);
    app.param('optionId', polls.pollOptionByID);

};

但无论我做什么,我都会继续获得 404!这是 polls.server.controller.js 中的 polls.pollOptionByID 函数

exports.pollOptionByID = function(req, res, next, id) {
    Poll.findOne({'poll_options._id':id}).exec(function(err,poll_option){
        console.log('hi');
        if (err) return next(err);
        if (!poll) return next(new Error('Failed to load poll option ' + id));
        req.poll_option = poll_option;
        next();
    });
}

但我什至没有到达那里。我在控制台日志中没有看到 hi 。是的,当然我在没有 console.log 的情况下尝试过,但没有任何效果,我一直只有 404。我做错了什么?如何实现我的目标,即创建一个新的投票文档 + 将其映射到给定投票文档中的 poll_option 子文档?

4

1 回答 1

1

所以,作为meanjs fb 组 ( https://www.facebook.com/groups/meanjs/463004417186215/?comment_id=463027443850579¬if_t=group_comment的wellington zhao ( https://www.facebook.com/AlphanumericSoup?fref=ufi ) ) 指出:

看起来您正在尝试发布到仅定义了 PUT 的路由 (/polls/:pollId/votes/:optionsId)。将其更改为其中一个,然后查看 404 是否仍然存在。

所以我将路由定义更改为 post 和 viola,它起作用了!希望我能帮助其他菜鸟避免数小时的咒骂和大喊为什么。

于 2014-12-14T00:35:37.773 回答