backbone fetch总是在IE中给出错误回调

时间:2013-02-21 02:17:37

标签: javascript ajax backbone.js fetch

我在骨干上有一个集合如下:

define([
    "jquery","backbone",

    "models/homeTile"
],

    function($, Backbone, Model) {
        'use strict';

        // Creates a new Backbone Collection class object
        var Collection = Backbone.Collection.extend({

            // Tells the Backbone Collection that all of it's models will be of type Model (listed up top as a dependency)
            model: Model,

            url: 'http://easyuniv.com/API/hometiles',

            comparator: function(tile) {
                return 1.0 / tile.get('userCount');
            }

        });

        // Returns the Model class
        return Collection;
    }

);

当我在FF或chrome中调用对象上的fetch时,它运行得很好。但是,在IE中,它总是输入fetch的错误回调。

我查看了F12开发工具的网络标签,但没有显示该集合的网络调用。

当我将此作为我的错误回调:

error: function(data, response) {
    console.log(response.responseText);
}

只打印LOG: undefined

关于这可能是什么的任何想法?

0 个答案:

没有答案