在Rails中覆盖MIME类型

我想在Rails中覆盖JSON MIME类型(“application / json”)(“text / x-json”)。 我试图在mime_types.rb中再次注册MIME类型,但没有奏效。 有什么建议么?

谢谢。


这应该工作(在初始化程序,插件或一些类似的地方):

Mime.send(:remove_const, :JSON)
Mime::Type.register "text/x-json", :json

尝试:

render :json => var_containing_my_json, :content_type => 'text/x-json'
链接地址: http://www.djcxy.com/p/1217.html

上一篇: Overriding a MIME type in Rails

下一篇: Simpler way to stage only modified files in Git (not deleted)