在骨干网中,如何将我的实体指向外部端点?
例如,我的应用程序在http://myapp.com上运行
我希望它使用 followgin rest web 服务
http://external.com/api/rest/xxxx
我尝试使用urlRoot属性,但它似乎不起作用
Sagan.FeatureModel = Backbone.Model.extend({
defaults: {
name: "New Feature",
parent: "",
enabled: false
},
urlRoot: 'http://localhost:9001/',
url: 'features'
});
出于测试目的,该应用程序托管在 localhost:9000 上,外部 Web 服务托管在 localhost:9001 上。
骨干似乎仍然指向 localhost:9000 而不是 9001