backbone.layoutmanager和handlebars模板引擎

dan*_*ren 1 javascript-framework backbone.js handlebars.js backbone-views

我正在使用backbone.layoutmanager项目:https: //github.com/tbranyen/backbone.layoutmanager#readme

有人可以用车把模板引擎发布样品吗?包含修改后的app.js文件和实例视图?

我按照说明操作,我有点困惑,我应该在实例级别和全局中做什么.我一直在我的模板上收到"没有方法'匹配'错误消息.

谢谢

jmc*_*rad 5

您修改后的app.js将使用以下内容:

define([
  "jquery",
  "underscore",
  "backbone",
  "handlebars",
  "plugins/backbone.layoutmanager"
],
function($, _, Backbone, Handlebars) {
  "use strict";

  var JST = window.JST = window.JST || {};

  Backbone.LayoutManager.configure({
    paths: {
      layout: "path/to/layouts/",
      template: "path/to/templates/"
    },

    fetch: function(path) {
      path = path + ".html";

      if(!JST[path]) {
        $.ajax({ url: "/" + path, async: false }).then(function(contents) {
          JST[path] = Handlebars.compile(contents);
        });
      }

      return JST[path];
    }

    // It is not necessary to override render() here.
  });

  var app = {
    // Define global resources here.
  };

  return _.extend(app, Backbone.Events);
});
Run Code Online (Sandbox Code Playgroud)

一个视图的示例:

var SampleView = Backbone.View.extend({
  template: "path/to/sample/template",

  // Override this for fine grained control of the context used by the template.
  serialize: function() {
    return {
      property: 1,
      anotherProperty: 2
    };
  }

  // No need to override render() for simple templates.
});
Run Code Online (Sandbox Code Playgroud)

以及与视图关联的模板:

<div>
  <h2>{{property}}</h2>
  <h2>{{anotherProperty}}</h2>
</div>
Run Code Online (Sandbox Code Playgroud)