主干布局管理器-未调用Render



以下是主干布局管理器github的示例代码。视图的自定义渲染没有被调用/它没有在断点处停止。发生了什么。

   // Create a Content view to be used with the Layout below.
    var ContentView = Backbone.Layout.extend({
      template: "#content"
    });
    // Create a new Layout with a sub view for content.
    var layout = new Backbone.Layout({
      template: "#layout",
      // This will place the contents of the Content View into the main
      // Layout's <p></p>.
      views: {
        // Appending a new content view using the array syntax
        p: new ContentView({
          // Custom render function that reverses everything.
          render: function(template, context) {
            return template(context).split("").reverse().join("");
          }
        })
      }
    });
    // Attach the Layout to the main container.
    layout.$el.appendTo(".main");
    // Render the Layout.
    layout.render();

当我发布这个问题时,Github已经回答了这个问题。它应该是layout.renderTemplate()

相关内容

  • 没有找到相关文章

最新更新