我需要使用骨干集合查询数据库。我不知道该怎么做。我假设我需要在某处设置一个 url,但我不知道那在哪里。我很抱歉这一定是一个非常基本的问题,但我在 CodeSchool.com 上学习了主干课程,但我仍然不知道从哪里开始。
这是我收集的代码:
var NewCollection = Backbone.Collection.extend({
//INITIALIZE
initialize: function(){
_.bindAll(this);
// Bind global events
global_event_hub.bind('refresh_collection', this.on_request_refresh_collection);
}
// On refresh collection event
on_request_refresh_collection: function(query_args){
// This is where I am lost. I do not know how to take the "query_args"
// and use them to query the server and refresh the collection <------
}
})