0

我希望我足够清楚,否则请我澄清。
我想删除与主模板一致的最终创建视图...</p>

我确实尝试了以下实现,但没有成功。

   // main-template.html

   <div id=""project>
     <div class="main-template">
        <div id="view1"></div>
        <div class="foldable-block">
            <div id="view2"></div>
            <div id="view3"></div>       
        </div>
     </div>
   </div>

//mainView.js
define([
    "js/views/view1",
    "js/views/view2",
    "js/views/view3",
    "text!templates/main-template.html"
], function (View1, View2, View3, mainTemaplte) {

    var MainView = Backbone.View.extend({

        initialize: function ()
        {
            this.$el.html(Mustache.render(mainTemaplte));
            this.render();
        },

        el: $("#project"),

        render: function ()
        {
            var options = this.options;

            this.view1 = new View1(options);
            this.view2 = new View2(options);
            this.view3 = new View3(options);
        }
    });    

    return MainView;
});

//view1.js
define([… ], function (..) {

    var View1 = Backbone.View.extend({

         el: $("#view1"),

         initialize: function () {
             console.log(this.$el) // []
             setTimeout( function () {
                    console.log(this.$el) // []
             }, 2000);
         }

    });

    return View1;

});

您可以从评论中看到的问题在view1.js

(this.$el) // []

从我的 js 控制台它可以工作:

$("#view1") // <div>….</div>

我的目标是:
1)当我加载 mainView.js 模块时,我想创建一个模板来附加我的视图(view1、view2、view3)
2)当我触发删除视图时,每个 DOM 都附加了视图, 应该删除。
3)当我再次调用mainView.js模块时,应该重新创建模板。

如果您有其他想法要建议,请发表。


感谢@nikoshr 建议this.$el,在view1.j, 中定义了,当我在中调用渲染时,view1.js它被this.$el正确填充,
但它没有附加到文档正文。
如何在不使用 append 或类似的 jquery 方法的情况下实现它main-template.html

这是我的渲染功能:

    render: function () 
    {
         this.$el.html(Mustache.render(myTemplate, this.view);
    }
4

1 回答 1

2

您正在将子视图附加到您需要它们时不存在的元素。这样的事情可能是朝着正确方向迈出的一步:

主视图.js

define([
    "js/views/view1",
    "js/views/view2",
    "js/views/view3",
    "text!templates/main-template.html"
], function (View1, View2, View3, mainTemaplte) {

    var MainView = Backbone.View.extend({

        initialize: function ()
        {
            this.render();
        },

        render: function ()
        {
            // render from template and assign this.el to the root of the element
            // e.g #project
            var html=Mustache.render(mainTemaplte);
            this.setElement( $(html) );

            // create each view with its el set to the correct descendant
            this.view1 = new View1( _.extend( {el:this.$("#view1")} , this.options) );
            this.view2 = new View2( _.extend( {el:this.$("#view2")} , this.options) );
            this.view3 = new View3( _.extend( {el:this.$("#view3")} , this.options) );
        }
    });    

    return MainView;
});

view1.js

define([… ], function (..) {

    var View1 = Backbone.View.extend({

         initialize: function () {
             console.log(this.$el);
         }

    });

    return View1;
});

你可以用类似的东西重新创建你的视图

require(["js/views/mainView"], function(MainView) {
    var view=new MainView();
    console.log(view.$el);

    //attach  the view to the DOM
    $("body").append(view.$el);
});
于 2012-05-16T12:21:28.900 回答