干杯! 我必须在 Rails 后端的一个命名空间中使用不同的资源:
namespace :api, defaults: { format: :json } do
resources :users, only: [:show] do
collection do
get 'profile'
end
end
resource :music, only: [], controller: 'music' do
collection do
get 'search'
end
end
end
有没有办法在我的 rest_adapter 中分离命名空间 'api/users' 和 'api/music' ?
Bandyard.CustomAdapter = DS.RESTAdapter.extend({
bulkCommit: false,
url: "http://bandyard.dev",
namespace: 'api/users'
});
如果我需要从 'api/music' 路径中获取 json 怎么办?