backbone.js fetch results cached

后端 未结 4 1699
被撕碎了的回忆
被撕碎了的回忆 2021-01-31 02:39

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

App.Controllers.PlanMembers = Backbone.Controller.extend({
    routes: {
        \"         


        
4条回答
  •  离开以前
    2021-01-31 03:25

    Adding 'cache:false' to fetch worked!

    this.foo.fetch({ cache:false });
    

    I was able to fix a bug that only appeared in IE when dev tools was not being used.

提交回复
热议问题