BackboneJS Backbone.history.start()方法

它跟踪历史相匹配的合适的路由,触发回调来处理事件并启用在应用程序中的路由。

开始

这是可被用于操纵BackboneJS-历史的唯一方法。它开始监听路由和管理历史可标记的URL。

语法

Backbone.history.start(options)

参数:

  • options: 这些选项包括历史使用的参数,如pushState和hashChange。

示例

<!DOCTYPE html>
   <head>
      <title>History Example</title>
         <script src="https://code.jquery.com/jquery-2.1.3.min.js" type="text/javascript"></script>
         <script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js" type="text/javascript"></script>
         <script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone-min.js" type="text/javascript"></script>
   </head>
   <script type="text/javascript">
       //'Router' is a name of the router class
      var Router = Backbone.Router.extend({

         //The 'routes' maps URLs with parameters to functions on your router
         routes: {
            "myroute" : "myFunc"
         },

         //'The function 'myFunc' defines the links for the route on the browser
         myFunc: function (myroute) {
            document.write(myroute);
         }
      });

      //'router' is an instance of the Router
      var router = new Router();

      //Start listening to the routes and manages the history for bookmarkable URL's
      Backbone.history.start();
  </script>
  <body>
     
     <a href="#route1">Route1 </a>
     <a href="#route2">Route2 </a>
     <a href="#route3">Route3 </a>
  </body>
</html>

输出结果

让我们进行以下步骤来看看上面的代码工作:

  • 保存上述代码到文件start.html

  • 在浏览器打开这个HTML文件。


上一篇: BackboneJS router.route()方法 下一篇: BackboneJS同步