0
假設我們有下面的代碼:Ember RESTAdapter命名空間是可繼承的嗎?
App.ApplicationAdapter = DS.RESTAdapter.extend({
namespace: '/webapp_name'
host: 'http://localhost:8080'
});
App.PersonAdapter = DS.RESTAdapter.extend({
namespace: '/foo/bar'
});
那麼,是模型App.Person
在http://localhost:8080/webapp_name/foo/bar/person
或http://localhost:8080/foo/bar/person
定位?
嘗試繼承,你'PersonAdapter'從'App.ApplicationAdapter',而不是'DS.RESTAdapter覆蓋'。然後它會「定位」http:// localhost:8000/foo/bar/persons。 –