私のベースコレクションにはベースパスがあり、ベースパスからさらに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;