Backbone.js-集合未定义

Backbone.js - Collection is undefined

本文关键字:未定义 集合 js- Backbone      更新时间:2023-12-17

我正在尝试学习backbone.js,但我一直在获取json并添加到集合中。该集合未定义,我不知道为什么。代码:

$(document).ready(function() {
    (function($) {
        //model
        window.Wine = Backbone.Model.extend();
        window.WineCollection = Backbone.Model.extend({
            url: "http://localhost/bootstrap/json.php",
            model: Wine
        });

        //views
        window.WineItemView = Backbone.View.extend({
            template: _.template($("#wine-item-template").html()),
            tagName: 'li',
            render: function() {
                $(this.el).html(this.template(this.model.toJSON()));
                return this;
            }
        });
        window.WineListView = Backbone.View.extend({
            tagName: 'ul',
            initialize: function() {
                this.model.bind('reset', this.render, this);
            },
            render: function() {
                _.each(this.model.models, function(wine) {
                    $(this.el).append(new WineItemView({
                        model: wine
                    }).render().el);
                }, this);
                return this;
            }
        });

        window.WineView = Backbone.View.extend({
            template: _.template($('#wine-template').html()),
            render: function() {
                $(this.el).html(this.template(this.model.toJSON()));
                return this;
            }
        });
        //Router
        window.AppRouter = Backbone.Router.extend({
            routes: {
                '': 'home',
                'wines/:id': "wineDetails"
            },
            home: function() {
                this.wineList = new WineCollection();
                this.wineListV = new WineListView({
                    model: this.wineList
                });
                this.wineList.fetch({success: function(){
                    console.log(this.wineList.models); // => 2 (collection have been populated)
                }});
                console.log(this.wineListV);
                $("#winelist").html(this.wineListV.render().el);
            },
            wineDetails: function(id) {
                this.wine = this.wineList.get(id);
                console.log(id);
                this.wineView = new WineView({
                    model: this.wine
                });
                $("#container").empty().html(this.wineView.render().el);
            }
        });

    })(jQuery);
    var app = new AppRouter();
    Backbone.history.start();
});

json.php返回:

[
   {
      "name":"Wine 1",
      "price":"100",
      "status":"available"
   },
   {
      "name":"Wine 1",
      "price":"100",
      "status":"available"
   },
   {
      "name":"Wine 1",
      "price":"100",
      "status":"available"
   }
]

我正在本地主机上测试它。

你犯了一个愚蠢的打字错误:

window.WineCollection = Backbone.Model.extend

应该是

window.WineCollection = Backbone.Collection.extend

注意,按照惯例,WineListView类应该使用this.collection来引用WineCollection的实例,并且Backbone集合对象提供下划线迭代方法,因此代替

.each(this.model.models, function(wine) {

进行

this.collection.each(function (wineModel) {

您应该更改

window.WineCollection = Backbone.Model.extend({
            model: Wine,
            url: "wine.json"
        });

window.WineCollection = Backbone.Collection.extend({
            model: Wine,
            url: "wine.json"
        });

欢迎来到SO:)这是你的第一个问题,让我做一个难忘的问题。当您说集合是undefined时,您可以向我们提供行号(或突出显示它),以便调试。在initialize方法中,您必须将_.bindAll(this)放在您想要引用的对象的情况下(默认为window对象),而不是在下面执行#1

 _.each(this.model.models, function (wine) {
     $(this.el).append(new WineItemView({
         model: wine
     }).render().el);
 }, this);

1

 this.model.each(function (wine) {
     $(this.el).append(new WineItemView({
         model: wine
     }).render().el);
 }, this);

试试这个

 window.WineListView = Backbone.View.extend({
     tagName: 'ul',
     initialize: function () {
         _.bindAll(this);
         this.model.on('reset', this.render);
     },
     render: function () {
         #1
     }
 });

万一你在这里迷路了,有一份代码http://jsbin.com/axixir/edit#javascript