Saturday, October 5, 2024
Google search engine
HomeLanguagesJavascriptBackbone.js url Model

Backbone.js url Model

The Backbone.js url Model is a function that is used to get the relative url where the model’s resource would be located on the server. If the model is located somewhere else, override this method with the correct logic to get the model. General URLs are of the form of [ Collection.url]/[id]’ but we can override this by specifying urlRoot if the Model wants a separate URL. 

Syntax:

model.url() ;

Parameters: It does not take any parameters.

Example 1: In this example, we will illustrate The Backbone.js url Model. In this example, we get the relative url of the Model which is part of the Collection. Here url would be the General form.  

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>BackboneJS url Model</title>
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
</head>
 
<body>
    <h1 style="color: green;">
        neveropen
    </h1>
 
    <h3>BackboneJS url Model</h3>
     
    <script type="text/javascript">
        var Person = Backbone.Model.extend();
        var collection = Backbone.Collection.extend({
            model: Person,
            url: '/book/author'
        });
 
        // Creating instance of collection;
        var Coll_Person = new collection();
 
        // Adding model to collection
        var person = new Person();
        Coll_Person.add(person)
        document.write(`Resource for the Model is
            reside at : <b> ${person.url()} </b> `);
    </script>
</body>
 
</html>


Output:

Backbone.js url Model

Example 2: In this example, we will override the general form of url with the urlRoot property of the Model and id attribute of the model.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>BackboneJS url Model</title>
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
    <script src=
        type="text/javascript">
    </script>
</head>
 
<body>
    <h1 style="color: green;">
        neveropen
    </h1>
    <h3>BackboneJS url Model</h3>
    <script type="text/javascript">
        var Person = Backbone.Model.extend({
            urlRoot:
                'https://...com/posts/1/comments'
        });
 
        // The instance with id attributes
        var person = new Person();
        document.write(`Overriding the url of Model
            with urlRoot : <b> ${person.url()} </b><br> `);
         
        // If we set id attribute
        person.set('id', 10);
        document.write(`Overriding the url of Model with
            urlRoot and id : <b> ${person.url()} </b> `);
    </script>
</body>
 
</html>


Output:

Backbone.js url model

Reference: https://backbonejs.org/#Model-url

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Dominic Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments