JSON渲染问题 - Rails3

时间:2014-07-07 10:23:03

标签: ruby json ruby-on-rails-3.2

我的应用程序在Ruby 1.9.3和Rails 3.2.8的RoR堆栈上运行,在我的一个控制器中,这段代码

if user.save   
    hash = { data: user.name, success: true,
             msg: 'User updated Successfully.',
             content_type: 'text/html' }
    @json = JSON.generate hash
    render json: @json
end

引发以下问题,

Completed 406 Not Acceptable in 56816ms (Views: 0.1ms | ActiveRecord: 2.7ms)

我尝试过其他几种方法,比如format.json,不同的渲染选项,但它们似乎都抛出同样的错误。需要解决方案来解决这个问题。

0 个答案:

没有答案