葡萄api忽略了PUT / POST参数

时间:2013-08-05 12:26:04

标签: ruby-on-rails api rspec grape grape-api

我正在为rails应用程序构建一个葡萄API。我正在使用rspec请求规范进行测试。我在制作这样的邮政路线时遇到了问题:

resources :events do
  segment '/:event_id' do
    resources :tickets do
       post do
         event = current_user.events.find params[:event_id]
         ...#do sth with event using params[:tickets_ids]

相应的规范:

it "should should return the JSON hash of validated tickets" do
  post "/api/mobile/#{version}/events/#{event.id}/tickets/", { tickets_ids: [1,2] }, credentials
  response.should be_success
  JSON.parse(response.body).should be_kind_of Hash
end

Grape'controller'无法看到任何未作为url的一部分发送的参数。打印出params [:tickets_ids]时,它是零。使用get请求时我没有这个问题。我可以使用curl手动发送请求时重现该问题。嵌套资源路由也不是问题,因为它与顶级路由的行为相同。

我在github上发现了以下问题但是应用给定的猴子补丁不起作用并在启动时破坏了服务器。 https://github.com/intridea/grape/issues/417

我使用的是以下版本的gem,由于依赖性冲突,我无法升级它们:

grape (0.2.1.1)
rails(3.0.7)
rspec-rails (2.6.1)

非常感谢任何帮助和提示。

1 个答案:

答案 0 :(得分:1)

如果我记得应该有一个标题集Content-Type,其值为application / x-www-form-urlencoded