BackboneJS Articles

Found 3 articles

Explain HTTP Request in Backbone.js

Prabhdeep Singh
Prabhdeep Singh
Updated on 17-Mar-2023 343 Views

Backbone.js is helping us to organize the JavaScript as it is a compact library. And HTTP is referred to as HyperText Transfer Protocol which helps us to connect the web server over the internet. First, we need to discuss the Backbone.js, HTTP protocol, and HTTP request for a clear understanding of HTTP requests in Backbone.js. In the below section we have discussed all after that we go towards the HTTP Request in Backbone.js with working of the HTTP Request and also examples. And in the end, we conclude the whole article. In this article, we are going to discuss the ...

Read More

Difference between Backbone.js and Jquery

Ayush Gupta
Ayush Gupta
Updated on 27-Nov-2019 325 Views

Backbone is an MV* framework while jQuery is a DOM toolkit.With Backbone, you represent data as Models, which can be created, validated, destroyed, and saved to the server. Whenever a UI action causes an attribute of a model to change, the model triggers a "change" event; all the Views that display the model's state can be notified of the change so that they are able to respond accordingly, re-rendering themselves with the new information.While jQuery is a solid API for querying the DOM with support for event handling, deferred objects, and animations. It is best suited for things like querying ...

Read More

Write the dependencies of backbone.js in javascript?

Ayush Gupta
Ayush Gupta
Updated on 27-Nov-2019 264 Views

The only hard dependency(without which backbone js won't work at all) is Underscore.js. Underscore is a JavaScript library that provides a whole mess of useful functional programming helpers without extending any built-in objects.There are other dependencies required as you proceed to use more advanced features of backbone.js. For example,Libraries for RESTful persistence(Backbone.sync)History support via Backbone.RouterDOM manipulation with Backbone.View or Jquery

Read More
Showing 1–3 of 3 articles
« Prev 1 Next »
Advertisements