覆盖Rails中的MIME类型

JP *_*son 3 ruby mime json ruby-on-rails mime-types

我想在Rails中覆盖JSON MIME类型("application/json")("text/x-json").我试图在mime_types.rb中再次注册MIME类型,但这不起作用.有什么建议?

谢谢.

Ben*_*eld 11

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

Mime.send(:remove_const, :JSON)
Mime::Type.register "text/x-json", :json
Run Code Online (Sandbox Code Playgroud)