私は ajax リクエストがあるオブジェクトを持っています:
var newsrecentObj = {
init: function() {
var self = this;
self.fetch().done( function(data) {
console.dir( data );
} ).error( function(data) {
// stop ajax call
} );
},
fetch: function() {
var self = this;
return $.ajax({
url: 'http://url.to/api',
timeout: 5000,
dataType: 'jsonp'
});
}
}
var newsrecent = Object.create();
newsrecent.init();
タイムアウトが発生したときにリクエストを停止したい。しかし、どうすればそれを行うことができますか?
TNX