我在 Rails Routes 中指定了以下内容。我想在这条路线上同时允许GET和POST,但无论我尝试什么,它只允许 #index 操作,并且在请求 POST 时不访问 #create 操作。
match ':user_id/special_deals', to: 'special_deals#index'
我也试过这个:
match ':user_id/special_deals', to: 'special_deals#index', :via => [:get, :post]
我需要先指定用户 ID,因为有权访问 API 的人可以访问多个用户的信息。