我有一个显示表单的页面/会话。
我想发布自己,然后显示结果。
我的路线目前看起来像这样
namespace :api do
namespace :v1 do
resources :users do
match :all_users, :on => :collection, :as => "/users"
end
resources :sessions, :only => [ :index ]
resources :user_info do
match :user_info, :on => :collection
end
resources :user_schedule do
match :user_schedule, :on => :collection
end
end
所以会话现在只显示索引,但我希望它响应get和post请求,如果是post请求则显示我的json结果。
最终我希望所有其他路线都遵循相同的
由于
答案 0 :(得分:0)