在Rails 4中格式化我的JSON输出
我在我的控制器中使用pretty_generate,但出现以下错误
'只允许生成JSON对象或数组'
@celebrities = Celebrity.includes(:category)
respond_to do |format|
format.json { render json: JSON.pretty_generate(@celebrities.to_json(:include =>{:category => {:only => [:category]} })) }
end
我不知道为什么我得到这个错误
如错误提示, only generation of JSON objects or arrays allowed
。 我想你应该试试这个。
@celebrities = Celebrity.includes(:category)
respond_to do |format|
format.json { render json: JSON.pretty_generate(JSON.parse(@celebrities.to_json(:include =>{:category => {:only => [:category]} })))}
end
链接地址: http://www.djcxy.com/p/47157.html