admin管理员组文章数量:1345327
The following example code works well:
Auth_controller.prototype.isLogged = function(){
//Check if the user is authenticated
var getAuthStatus = this.auth_model.fetch();
return getAuthStatus;
};
Auth_controller.prototype.redirect = function(fragment, args, next){
var getAuthStatus = this.isLogged();
var self = this;
$.when(getAuthStatus).then(function(response){
//Do something with the response
}
});
This doesn't seem to work for a Collection though.
When I console log the collection, I get an empty collection back.
I know that I can use the success callback function from within the method (tested that already), but I don't want to do that, because I want the function to return a promise that I can call from other functions as well.
Edit -> No, sorry it doesn't work in the success callback either so it seems.
Any suggestions for a workaround ?
Edit;
This image shows what is returned from the model and collection fetch methods.
Unless I'm doing something wrong that is obvious, I don't understand why this happens.
When console logging the returned response in the success callback, I see that the empty object as shown in the screenshot, gets populated.
Edit2:
This is what my collection looks like:
define([
/*--- libraries ---*/
'jquery',
'underscore',
'backbone',
/*--- model ---*/
'models/users/role_model'
], function($, _, Backbone,
Role_model){
var Role_collection = Backbone.Collection.extend({
url: '/ingeb/api_v1/users/roles',
model: Role_model
});
return Role_collection;
});
The following example code works well:
Auth_controller.prototype.isLogged = function(){
//Check if the user is authenticated
var getAuthStatus = this.auth_model.fetch();
return getAuthStatus;
};
Auth_controller.prototype.redirect = function(fragment, args, next){
var getAuthStatus = this.isLogged();
var self = this;
$.when(getAuthStatus).then(function(response){
//Do something with the response
}
});
This doesn't seem to work for a Collection though.
When I console log the collection, I get an empty collection back.
I know that I can use the success callback function from within the method (tested that already), but I don't want to do that, because I want the function to return a promise that I can call from other functions as well.
Edit -> No, sorry it doesn't work in the success callback either so it seems.
Any suggestions for a workaround ?
Edit;
This image shows what is returned from the model and collection fetch methods.
Unless I'm doing something wrong that is obvious, I don't understand why this happens.
When console logging the returned response in the success callback, I see that the empty object as shown in the screenshot, gets populated.
Edit2:
This is what my collection looks like:
define([
/*--- libraries ---*/
'jquery',
'underscore',
'backbone',
/*--- model ---*/
'models/users/role_model'
], function($, _, Backbone,
Role_model){
var Role_collection = Backbone.Collection.extend({
url: '/ingeb/api_v1/users/roles',
model: Role_model
});
return Role_collection;
});
Share
Improve this question
edited Apr 9, 2014 at 16:16
Trace
asked Apr 9, 2014 at 15:27
TraceTrace
18.9k21 gold badges96 silver badges171 bronze badges
3
- Where exactly do you get an empty collection, and in what callback do you see that it should contain some items actually? – Bergi Commented Apr 9, 2014 at 15:34
- I have added a screenshot. In the jQuery when - then callback. It works well for the model, but when using the same method for the collection, it doesn't work... – Trace Commented Apr 9, 2014 at 15:44
-
1
This is what Collection.prototype.fetch returns:
return this.sync('read', this, options);
github./jashkenas/backbone/blob/master/backbone.js#L885-L898 in turn, sync doesreturn Backbone.sync.apply(this, arguments);
in turn which returns a promise. Is it possible you've overwritten .sync for this particular collection? Can you show us the code for that collection? – Benjamin Gruenbaum Commented Apr 9, 2014 at 15:56
1 Answer
Reset to default 10Actually, the collection's fetch
does return a promise:
Delegates to Backbone.sync under the covers for custom persistence strategies and returns a jqXHR.
See http://backbonejs/#Collection-fetch and http://api.jquery./jQuery.ajax/#jqXHR
本文标签: javascriptWhy doesn39t Backbone Collection fetch return a promiseStack Overflow
版权声明:本文标题:javascript - Why doesn't Backbone Collection fetch return a promise - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757431a2533760.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论