访问Backbone fetch参数

时间:2015-03-21 01:59:03

标签: javascript backbone.js

我需要能够在Backbone集合上调用fetch时向服务器传递一些信息。在我的前端,我有这个代码,将数据:{}传递给fetch函数以及成功和错误回调。查看Backbone fetch的文档:

http://backbonejs.org/#Collection-fetch

也许我没有正确地将参数传递给fetch函数?也许他们应该在一个数组[] ......

var lineupCollection = new LineupCollection([]);
var loadTeamsOnPageLoad = (function() {

    lineupCollection.url = '/api/lineups';
    lineupCollection.fetch(
        {
            processData: true,
            data: {
            team_id:$("#team_id").attr("value")
        }
        },
        {
            success: function (result) {
                if(window.teamDashboardTableView === undefined){
                    window.teamDashboardTableView = new TeamDashboardTableView({el: $("#team-dashboard-table-div")});
                }
                window.teamDashboardTableView.render();
            },
            error: function (err) {
                setTimeout(function () {
                    alert('error fetching lineupCollection - ' + err.message);
                }, 1);

            }
        }
    );
})();

将把Backbone集合加载到表中。

它在后端调用此方法:

exports.getBackboneLineups = function(req,res,next){

    var user_id = req.mainUser._id;
    console.log('req.params',req.params); //empty {}
    console.log('req.team',req.team); //undefined
    console.log('team_id',req.team_id); //undefined
    console.log('req.data',req.data); //undefined
    console.log('req.body',req.body); //empty {}
    var team_id = req.team._id;  //undefined EXCEPTION, can't read property _id of undefined
    var system_db = req.system_db;
    var Lineup = LineupModel.getNewLineup(system_db,user_id);

    Lineup.find({team_id:team_id}, function (err, lineups) {
        if (err) {
            return next(err);
        }
        res.json(lineups);
    });

};
然而,就完全无法访问我认为从客户端传递到服务器的数据而言,我完全失败了。我无法找到一个很好的例子而且我已经厌倦了猜测。最好的方法是什么?

编辑: 还尝试在同一个JavaScript对象中传递{data:{}, success: function(), error: function()},但这并不起作用。

1 个答案:

答案 0 :(得分:1)

fetch只接受一个参数(参见http://backbonejs.org/#Collection-fetch)。相反,您应该更改后端以在资源的URL中指定团队ID。例如:

lineupCollection.url = function(){ return '/api/lineups?team_id=' + this.team_id; };
lineupCollection.team_id = $("#team_id").attr("value");
lineupCollection.fetch({ success: ..., error: ...});