0
所以我有途徑一堆,我可以像訪問本地主機通過:3000 /帖本地主機:3000 /用戶我將如何添加/ API這些路線
的config/routes.rb中看起來像這樣
resources :posts do
resources :comments, shallow: true do
delete :destroy_all, on: :collection
end
resources :images, shallow: true
end
resources :comments, only: [:new]
resources :users
root 'welcome#index'
如何修改它,所以我也有正常的訪問,也對他們的API訪問權限,如 http://localhost:3000/api/posts http://localhost:3000/api/users/new和這樣