在我的基本集合中,我有基本路径,从基本路径我正在扩展更多 url.. 但是当我在扩展集合中控制 url 时,我没有得到 url 的完整路径..
相反,我只是得到了 url - 扩展集合有什么......为什么我会这样,什么应该是正确的方法?
这是我的尝试:
BaseCollection = Backbone.Collection.extend({
path: 'http://path/to/api'
});
TeachersCollection = BaseCollection.extend({
url:"xyz/abc",
initialize:function(){
console.log(this.url);//xyz/abc - why i am getting like this instead of full path?
//full url should be 'http://path/to/api/xyz/abc' - how can i get like this..?
}
});
var x = new TeachersCollection;