ruby-on-rails-3 – 如何在Rails中路由[OPTIONS]?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – 如何在Rails中路由[OPTIONS]?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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调用?谢谢.

解决方法

match '/users' => "users#options",via: :options

如果放在其他路线之前,也可能是一条可能的路线.

原文链接:https://www.f2er.com/ruby/272908.html

猜你在找的Ruby相关文章