BackboneJS - Historia

Mantiene un registro del historial, coincide con la ruta apropiada, activa devoluciones de llamada para manejar eventos y habilita el enrutamiento en la aplicación.

comienzo

Este es el único método que se puede utilizar para manipular el BackboneJS-History. Comienza a escuchar rutas y administra el historial de URL que se pueden marcar.

Sintaxis

Backbone.history.start(options)

Parámetros

options - Las opciones incluyen los parámetros como pushState y hashChange usado con historia.

Ejemplo

<!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>

Salida

Realicemos los siguientes pasos para ver cómo funciona el código anterior:

  • Guarde el código anterior en el start.htm archivo.

  • Abra este archivo HTML en un navegador.

NOTE- La funcionalidad anterior está relacionada con la barra de direcciones. Entonces, cuando abra el código anterior en el navegador, mostrará el resultado de la siguiente manera.