在控制器中:
if @topic.save
render json: @topic, status: :updated, location: @topic
else
render json: @topic.errors, status: :unprocessable_entity
end
有错误的地方,json响应是这样的:
{"topic_id":["has already been taken"]}
如何向错误 json 响应添加分组前缀,以便更容易在客户端 (RestKit) 路径映射上进行解析?例如:
{"errors":[{"topic_id":["has already been taken"]}]}