Backbone:渲染之前创建的视图

时间:2014-12-29 15:29:45

标签: javascript backbone.js backbone-views backbone-events backbone-routing

我有包含导航栏和地图的shell视图。对此视图呈现使用先前渲染的地图的其他视图。当我转到视图perfil时,地图会被删除,但导航栏会被保留,到目前为止一直很好。我的问题是当回到家时,地图不会出现只显示包含地图的div。贝娄展示了这个例子:

查看Shell并查看主页: enter image description here

去查看Perfil: enter image description here

回到家:

enter image description here

继承我的代码:

app.js

var ev = new Application();

ev.Router = Backbone.Router.extend({ 
    routes: {
        "": "home",
        "evento/:id" : "evento",
        "criarevento" : "criarevento",
        "perfil" : "perfil"
    }, 

    home: function(){
        setTimeout(function(){
            $('#rightcolumn').html(new ev.views.Home(ev.shell.map).el);
        }, 0);

    },
    ... // other views
    perfil: function(){
        setTimeout(function(){
            $('#home').html(new ev.views.Perfil(ev.shell.template).el);
        }, 0); 
    }
});

$(document).on('ready', function() {
    ev.user = new ev.models.Person(); // Holds the authenticated Facebook user
    // Load HTML templates for the app
    ev.templateLoader.load(['shell', 'home', 'search_keyword', 'evento', 'login', 'quemvai', 'criar_evento', 'home_criar_evento', 'perfil'], function () {
        ev.shell = new ev.views.Shell({el: "#shell", model: ev.user});
        ev.router = new ev.Router();
        Backbone.history.start();
    });
});

perfil.js

ev.views.Perfil = Backbone.View.extend({
    initialize: function(temp, model){
        var that = this;
        that.template = _.template(ev.templateLoader.get('perfil'));
        that.template2 = temp;
        //console.log(this.view);
        ev.router.on("route", function(route, params) {
            that.$el.html(that.template2());
        });
        that.render();  
    },
    render: function(map){
        this.$el.html(this.template()); 
        return this;
    }
});

到目前为止,我创建了一个事件,当路径发生变化时,我会调用我步入视图perfil的shell模板。但它不起作用。我做错了什么?

编辑: 我在视图perfil中更改了我的构造函数,这样当路由更改时只触发一次并调用ev.shell的render函数

 ev.views.Perfil = Backbone.View.extend({
        initialize: function(){
            var that = this;
            that.template = _.template(ev.templateLoader.get('perfil'));
            ev.router.once("route", function(route, params) {
                ev.shell.render();
            });
            that.render();  
        },
        render: function(map){
            this.$el.html(this.template()); 
            return this;
        }
    });

1 个答案:

答案 0 :(得分:2)

看起来您已准备好文档,即使加载包括地图在内的shell也是如此。当您转到配置文件页面时,您将替换#home元素的内容。然后当你回到家时,你替换#rightcolumn元素的内容。你永远不会重新渲染地图。

我认为您还需要将地图渲染代码放入路由器的home函数中。

作为旁注,我注意到你正在使用setTimeout函数。如果你正在使用它来渲染某些东西,因为它正在等待其他东西加载,那么你应该摆脱它并听一个事件。