Open In App

Backbone.js extend Router

Last Updated : 18 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Backbone.js extend Router is used to extend the Backbone’s Router class in which we can create our own Model. It also facilitates the instance property that are attached to the constructor function of the Router directly. It provide a router hash that pairs routes to action. 

Syntax: 

Backbone.Router.extend(  properties, classProperties );

Parameters: It accepts two parameters that are described below:

  • Parameters: This parameter provides the instance properties for the specified Router class.
  • classProperties: This class property is attached to the Router’s constructor function.

Example 1: In this example we will illustrate The Backbone.js extend Router. We will create our own Router class with the help of extend method.

HTML




<!DOCTYPE html>
<html>
<head>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>BackboneJS Router extend</h3>
  
    <script type="text/javascript">
        var Router = Backbone.Router.extend({
  
            routes: {
                '#rout1': 'role1',
                '#rout2': 'role2',
            },
  
            role1: function () {
                document.write(
                  "Illustrating Router extend!!!"
                );
            },
            role2: function () {
                document.write(
                  "Illustrating Router extend!!!"
                );
            }
        });
  
        var appRouter = new Router();
  
        document.write(JSON.stringify(appRouter));
    </script>
</body>
  
</html>


Output:

Backbone.js extend Router

Example 2: In this example we will add some initial function to our custom Router class which will call whenever new instance of class is called.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
    <script src=
            type="text/javascript">
    </script>
</head>
  
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
  
    <h3>BackboneJS Router extend</h3>
  
    <script type="text/javascript">
        var Router = Backbone.Router.extend({
  
            routes: {
                '': 'r1',
            },
  
            r1: function () {
                document.write(
                  "Illustrating Router extend!!!"
                );
            }
        });
  
        var appRouter = new Router();
        Backbone.history.start();
    </script>
</body>
  
</html>


Output:

Backbone.js extend Router

Reference: https://backbonejs.org/#Router-extend



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads