Backbonejs-history

提供:Dev Guides
移動先:案内検索

BackboneJS-歴史

履歴を追跡し、適切なルートに一致し、イベントを処理するコールバックを起動し、アプリケーションでルーティングを有効にします。

開始

これは、 BackboneJS-History を操作するために使用できる唯一の方法です。 ルートのリッスンを開始し、ブックマーク可能なURLの履歴を管理します。

構文

Backbone.history.start(options)

パラメーター

*options* -オプションには、履歴で使用される *pushState* や *hashChange* などのパラメーターが含まれます。

<!DOCTYPE html>
<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ファイルをブラウザーで開きます。

-上記の機能はアドレスバーに関連しています。 したがって、ブラウザで上記のコードを開くと、次のように結果が表示されます。

スタート例

link:/backbonejs/src/history/start [デモはこちらをクリック]