4

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

  1. 每个页面应该有不同的config.js吗?比如config-userpage.js…… config-homepage.js
  2. 我应该router.js为不同的页面设置不同的内容吗?喜欢router-userpage.js还是router-homepage.js...?
  3. 我应该尝试不同的样板,例如https://github.com/hbarroso/backbone-boilerplate吗?
4

1 回答 1

5

您绝对可以尝试不同的样板,但我不确定这会有所帮助。可以通过许多不同的方式实现多个页面。

Backbone Boilerplate 的一个很好的参考示例是:http: //githubviewer.org/。我已将整个内容作为开源发布,您可以查看如何在其中添加基本页面。

您可能想要获得创意并制作一个 Page 模型来处理您所在的页面以及每条路线的内部设置新的页面标题和要使用的布局。

一个非常基本的概念验证实现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 模型,它会根据状态确定要突出显示的导航按钮。您还可以在模块内创建路由器以封装功能并在应用程序对象上公开 Page 模型,以便它在整个应用程序中可用。

希望这可以帮助!

于 2013-02-17T23:19:48.073 回答