我发现从控制台中检查某些请求的响应更方便
>> app.put '/users/2/' => 500
但是无法找到一种指定请求参数的方法.我该怎么做?
解决方法
如果你想放置或发布到一个URL,那里也有方法.您可以按照Rails生产日志中显示的参数来完全复制/粘贴参数:
app.post('/foo',{"this" => "that","items" => ["bar","baz"]}) app.put('/foo',"baz"]})
app.post('/foo',{:this => "that",:items => ["bar","baz"]},{"X-Do-Something" => "yes"})
任何get / post / put / delete方法将在控制台上显示完整的日志输出,供您检查.如果要获取返回的响应正文等信息,HTTP状态或响应标头也很容易:
app.response.body app.response.status app.response.headers.inspect
资料来源:http://andyjeffries.co.uk/articles/debug-level-logging-for-a-single-rails-production-request