使用Backbone.js的多个页面

时间:2013-02-17 22:43:44

标签: javascript node.js backbone.js single-page-application backbone-boilerplate

我正在使用Backbone Boilerplate https://github.com/tbranyen/backbone-boilerplate并且不知道处理多个页面的最佳方法是什么。我找不到能帮助我轻松理解的答案。基本上,我在考虑这些选择:

  1. 每个页面应该有不同的config.js吗?与config-userpage.jsconfig-homepage.js ...?
  2. 一样
  3. 我应该为不同的页面使用不同的router.js吗?与router-userpage.jsrouter-homepage.js一样,......?
  4. 我应该尝试使用其他类似https://github.com/hbarroso/backbone-boilerplate的样板吗?

1 个答案:

答案 0 :(得分:5)

你绝对可以尝试不同的样板,但我不确定会不会 救命。可以通过多种不同方式实现多个页面。

Backbone Boilerplate的一个很好的参考示例是: http://githubviewer.org/。我已经把整个东西作为开源发布了 您可以查看基本页面的添加方式。

您可能希望获得创意并制作处理哪个页面的网页模型 您在每条路线上和内部都设置了新的页面标题和布局 使用

app/router.js内部的一个非常基本的概念验证实现可能 看起来像这样:

define([
  // Application.
  "app",

  // Create modules to break out Views used in your pages.  An example here
  // might be auth.
  "modules/auth"
],

function(app, Auth) {

  // Make something more applicable to your needs.
  var DefaultPageView = Backbone.View.extend({
    template: _.template("No page content")
  });

  // Create a Model to represent and facilitate Page transitions.
  var Page = Backbone.Model.extend({
    defaults: function() {
      return {
        // Default title to use.
        title: "Unset Page",

        // The default View could be a no content found page or something?
        view: new DefaultPageView();
      };
    },

    setTitle: function() {
      document.title = this.escape("title");
    },

    setView: function() {
      this.layout.setView(".content", this.get("view")).render();
    },

    initialize: function() {
      // Create a layout.  For this example there is an element with a
      // `content` class that all page Views are inserted into.
      this.layout = app.useLayout("my-layout").render();

      // Wait for title and view changes and update automatically.
      this.on({
        "change:title": this.setTitle,
        "change:view": this.setView
      }, this);

      // Set the initial title.
      this.setTitle();

      // Set the initial default View.
      this.setView();
    }
  });

  // Defining the application router, you can attach sub routers here.
  var Router = Backbone.Router.extend({
    routes: {
      "": "index"
    },

    index: function() {
      // Set the login page as the default for example...
      this.page.set({
        title: "My Login Screen!",

        // Put the login page into the layout.
        view: new Auth.Views.Login()
      });
    },

    initialize: function() {
      // Create a blank new Page.
      this.page = new Page();
    }
  });

  return Router;

});

正如您所看到的,这是一种创造性的页面"而且我确定 其他人有更好的实施。在Matchbox,我有一个非常强大的页面 做面包屑并找出导航按钮的模型 根据国家突出显示。您还可以在模块中创建路由器 封装功能并在应用程序对象上公开Page模型 它在整个申请过程中都可用。

希望这有帮助!