开发手册 欢迎您!
软件开发者资料库

BackboneJS -History

BackboneJS历史 - 从基本概念到高级概念,从简单和简单的步骤学习BackboneJS,其中包括概述,环境设置,应用程序,事件,模型,集合,路由器,历史记录,同步,视图,实用程序。

它跟踪历史记录,匹配适当的路线,触发回调以处理事件并启用应用程序中的路由.

start

这是唯一可用于操作 BackboneJS-History 的方法.它开始监听路由并管理可收藏URL的历史记录.

语法

Backbone.history.start(options)

参数

期权 : 选项包括与历史一起使用的参数,例如 pushState hashChange .

示例

         History Example                                             //'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();                     Route1       Route2       Route3       

输出

让我们执行以下步骤,了解上述代码的工作原理和减号;

  • 将以上代码保存在 start.htm 文件中.

  • 在浏览器中打开此HTML文件.

注意 : 上述功能与地址栏有关.因此,当您在浏览器中打开上述代码时,它将显示如下结果.

start example