假设请求参数如下:
curl -d '{ "data": { "type":"music","attributes":{"name": "acmes"}}} --header "Accept: application/vnd.api+json" --header "Content-Type: application/vnd.api+json"
也可能在参数中存在一个对象集合,包含多个对象
在 controller 中如何获取其中的参数呢?有没有什么方法或 gem 可以方便的获取其中的参数或参数组?
我现在只能用params[:data][:attributes][:name]
这样来直接拿参数...