我在Rails中做一个REST服务.这是我的路线.
resources :users match '/users',:controller => 'users',:action => 'options',:constraints => {:method => 'OPTIONS'}
我能够[GET]我的用户.我想更新我的用户,我收到一个错误:
ActionController::RoutingError (No route matches [OPTIONS] "/users/1"):
当我运行耙子路线这里是我给的路线:
users GET /users(.:format) users#index POST /users(.:format) users#create new_user GET /users/new(.:format) users#new edit_user GET /users/:id/edit(.:format) users#edit user GET /users/:id(.:format) users#show PUT /users/:id(.:format) users#update DELETE /users/:id(.:format) users#destroy /users(.:format) users#options {:method=>"OPTIONS"}
有人可以告诉我如何修复我的路由,所以我可以做任何形式的REST调用?谢谢.
@R_404_323@
match '/users' => "users#options",via: :options
如果放在其他路线之前,也可能是一条可能的路线.