Rails: how to treat alternative Accept: content-types as JSON?

后端 未结 2 1126
鱼传尺愫
鱼传尺愫 2021-02-20 10:10

So far I\'ve found two ways for request.format.json? to be true in Rails (i.e. where the incoming request is treated as JSON). One is if you request a resource and

2条回答
  •  萌比男神i
    2021-02-20 10:42

    An alternative to this is:

    api_mime_types = %W(
      application/vnd.api+json
      text/x-json
      application/json
    )
    
    Mime::Type.unregister :json
    Mime::Type.register 'application/json', :json, api_mime_types
    

    In initializers/mime_types.rb.

提交回复
热议问题