在Rails中覆盖MIME类型

时间:2020-03-06 14:22:52  来源:igfitidea点击:

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

谢谢。

解决方案

尝试:

render :json => var_containing_my_json, :content_type => 'text/x-json'

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

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