1
有沒有辦法從成功事件中引用所有者收集。 例如,我使用this
在這裏我想引用集合:如何通過從fetch:success事件中獲取此集合?
var col = Backbone.Collection.extend({
model: MobileService,
url: 'file.json',
initialize: function(){
this.fetch({
success: function(){
this.trigger('fetched');
},
...
該死的,這麼容易。是時候休息了,我猜...但由於某種原因不起作用。 –
我的不好。運作良好......雖然這不是最佳解決方案。不管怎麼說,還是要謝謝你! –