Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

backbone.js fetch results cached

Tags:

backbone.js

I am using fetch in the index action of the following backbone.js controller:

App.Controllers.PlanMembers = Backbone.Controller.extend({     routes: {         "": "index"     },      index: function () {         var planMembers = new App.Collections.PlanMembers();          planMembers.fetch({             success: function () {                 var recoveryTeam = planMembers.select(function (planMember) {                     return planMember.get("TeamMemberRole") == "RecoveryTeam";                 });                  var otherMembers = planMembers.select(function (planMember) {                     return planMember.get("TeamMemberRole") == "Other";                 });                  new App.Views.Index({ collection: { name: "Team", members: recoveryTeam }, el: $('#recoveryTeam') });                  new App.Views.Index({ collection: { name: "Team", members: otherMembers }, el: $('#otherTeam') });             },             error: function () {                 alert('failure');                 showErrorMessage("Error loading planMembers.");             }         });     } }); 

The problem is that the results are being cached. It does not pick up database changes. Is there anyway to tell backbone.js not to cache the results?

I know I could override the url of the collection and append a timestamp but I am looking for something a bit cleaner than that.

like image 228
dagda1 Avatar asked May 30 '11 15:05

dagda1


2 Answers

This is a problem on IE usually and backbone has nothing to do with it. You have to go down to the jQuery ajax call and look at the doc. Backbone uses jquery ajax for its sync method. You can do something like this to force ajax call on all browsers:

$.ajaxSetup({ cache: false }); 

http://api.jquery.com/jQuery.ajaxSetup/

like image 149
Julien Avatar answered Sep 30 '22 19:09

Julien


@Julien's recommendation will work, but every AJAX request will hit the server and nothing will be retrieved from the cache.

$.ajaxSetup({ cache: false }); 

There is another way of doing this. You could pass "cache: false" as an option in the fetch (see code below). The benefit is that fetch(s) that have "cache:false" will always hit the server and the other fetch(s) may retrieve data from the cache. The application I’m currently writing, access data and content asynchronously. Sometimes I want items to be retrieved from cache and sometimes I want to hit the server.

http://documentcloud.github.com/backbone/#Collection-fetch

jQuery.ajax options can also be passed directly as fetch options, so to fetch a specific page of a paginated collection: Documents.fetch({data: {page: 3}})

You can also override the collection's fetch method similar to the this code.

var PlanMembers = Backbone.Collection.extend({      ...      fetch: function (options) {          options = options || {};          options.cache = false;          return Backbone.Collection.prototype.fetch.call(this, options);      }      ... }) 

.

Below I added "cache: false" to the fetch

planMembers.fetch({             cache: false,  //Hit the server             success: function () {                 var recoveryTeam = planMembers.select(function (planMember) {                     return planMember.get("TeamMemberRole") == "RecoveryTeam";                 });                  var otherMembers = planMembers.select(function (planMember) {                     return planMember.get("TeamMemberRole") == "Other";                 });                  new App.Views.Index({ collection: { name: "Team", members: recoveryTeam }, el: $('#recoveryTeam') });                  new App.Views.Index({ collection: { name: "Team", members: otherMembers }, el: $('#otherTeam') });             },             error: function () {                 alert('failure');                 showErrorMessage("Error loading planMembers.");             }         }); 
like image 45
Mike Barlow - BarDev Avatar answered Sep 30 '22 19:09

Mike Barlow - BarDev