2

我是一个骨干新手,所以我在设置应用程序时有点摸索。我使用主干样板(https://github.com/tbranyen/backbone-boilerplate)和 github-viewer (https://github.com/tbranyen/github-viewer)作为参考,虽然在运行时我似乎得到了“this.model is undefined”。

这是我当前的 router.js:

define([
    // Application.
    "app",

    //Modules
    "modules/homepage"
],
    function (app, Homepage) {
        "use strict";

        // Defining the application router, you can attach sub routers here.
        var Router = Backbone.Router.extend({
            initialize: function(){
                var collections = {
                    homepage: new Homepage.Collection()
                };

                _.extend(this, collections);

                app.useLayout("main-frame").setViews({
                    ".homepage": new Homepage.Views.Index(collections)
                }).render();
            },

            routes:{
                "":"index"
            },

            index: function () {
                this.reset();
                this.homepage.fetch();
            },

            // Shortcut for building a url.
            go: function() {
                return this.navigate(_.toArray(arguments).join("/"), true);
            },

            reset: function() {
                // Reset collections to initial state.
                if (this.homepage.length) {
                    this.homepage.reset();
                }

                // Reset active model.
                app.active = false;
            }

        });

        return Router;
    }
);

还有我的 homepage.js 模块:

define([
    "app"
],
function(app){
    "use strict";

    var Homepage = app.module();

    Homepage.Model = Backbone.Model.extend({
        defaults: function(){
            return {
                homepage: {}
            };
        }
    });

    Homepage.Collection = Backbone.Collection.extend({
        model: Homepage.Model,

        cache: true,

        url: '/app/json/test.json',

        initialize: function(models, options){
            if (options) {
                this.homepage = options.homepage;
            }
        }
    });

    Homepage.Views.Index = Backbone.View.extend({
        template: "homepage",
        el: '#mainContent',

        render: function(){
            var tmpl = _.template(this.template);

            $(this.el).html(tmpl(this.model.toJSON()));

            return this;
        },

        initialize: function(){
            this.listenTo(this.options.homepage, {
                "reset": function(){
                    this.render();
                },

                "fetch": function() {
                    $(this.el).html("Loading...");
                }
            });
        }
    });

    return Homepage;
});

在此先感谢您的帮助!

更新:经过大量谷歌搜索(你应该看到我打开了多少标签),我我取得了一点进展,但仍然没有运气。我更新了我的路由器以具有以下内容:

app.useLayout("main-frame").setViews({
    ".homepage": new Homepage.Views.Index()
}).render();

我对 homepage.js 模块进行了一些修改,现在看起来像这样:

define([
    "app",
    ["localStorage"]
],
function(app){
    "use strict";

    var Homepage = app.module();

    Homepage.Model = Backbone.Model.extend({

        defaults: function(){
            return {
                homepage: {}
            };
        }
    });

    Homepage.Collection = Backbone.Collection.extend({
        //localStorage: new Backbone.LocalStorage("Homepage.Collection"),

        refreshFromServer: function() {
            return Backbone.ajaxSync('read', this).done( function(data){
                console.log(data);
                //save the data somehow?
            });
        },

        model: Homepage.Model,

        cache: true,

        url: '/app/json/test.json',

        initialize: function(options){
            if (options) {
                this.homepage = options.homepage;
            }else{
                //this.refreshFromServer();
            }
        }
    });

    Homepage.Views.Index = Backbone.View.extend({
        template: "homepage",
        el: '#mainContent',

        initialize: function(){
            var self = this;
            this.collection = new Homepage.Collection();
            this.collection.fetch().done( function(){
                self.render();
            });
        },

        render: function(){
            var data = this.collection;

            if (typeof(data) === "undefined") {
                $(this.el).html("Loading...");
            } else {
                $(this.el).html(_.template(this.template, data.toJSON()));
            }
            return this;
        }
    });

    return Homepage;
});

如您所见,我有 localStorage 代码,但现在注释掉了,因为我只想让一切都先正常工作。最终目标是进行初始调用,从 JSON 文件加载数据,然后使用 localStorage 继续。在用户与我的应用进行多次交互后,该应用稍后会提交数据。

我正在加载主视图,尽管主页模块没有填充主视图中的#mainContent 容器。

我做了所有我能做的谷歌搜索,但沮丧的是它并没有让我陷入困境。再次感谢您查看此内容,感谢您提供任何反馈!

4

2 回答 2

3

我认为您的班级层次结构在这里有点不稳定。例如,您的实例Homepage.Collection实际上是homepage从选项中分配一个属性。Homepage.Collection然后你传递一个intoHomepage.Views.Index作为选项的实例homepage......这有点难以理解。

也就是说,在我看来,您的问题只是model在构建时没有提供选项Homepage.Views.Index

new Homepage.Views.Index(collections)

collections没有model属性,因此我看不到this.model.toJSON()视图中稍后如何可以访问模型。基本上,您似乎想要Homepage.Views.Index处理一模型,而不仅仅是一个。所以你可能需要一个循环在你的render函数中结束this.collection(并且你应该改变你的视图构造以有一个collection选项而不是homepage选项)。

如果我在这里遗漏了什么或者我不清楚,那是因为我之前提到的这个数据模型的古怪。随意澄清你是如何推理出来的,我们可以再试一次:)

于 2013-02-11T20:13:19.853 回答
1

你的这个示例代码让我有点困惑,但我认为问题在于以下两行代码:

".homepage": new Homepage.Views.Index(collections)
$(this.el).html(tmpl(this.model.toJSON()));

看起来您将集合传递给视图,但在视图中您使用 this.model,因此错误“this.model is undefined”,因为它确实是未定义的。

如果您不着急,我建议您重新开始。看来您尝试得太快了。我看到您有骨干网、requirejs(或其他一些模块加载器)和样板文件,对于刚接触骨干网的人来说,这需要很多东西。相信我,我知道,因为我也相对较新。也许从一些你好世界的东西开始,然后慢慢地向上走。否则,通过各种项目的代码来破解您的方式可能会令人困惑。

于 2013-02-12T01:30:13.773 回答