我看到request.env['CONTENT_TYPE']
和有两个不同的值request.content_type
。
Content-Type
从一个单独的应用程序中,我向我的 Rails 应用程序发送了一个请求,并已将text/xml
.
这是我在 Rails 应用程序中看到的另一端:
request.env['CONTENT_TYPE'] = "text/xml"
request.content_type = "application/xml"
request.content_type
实际上是action_dispatch.request.content_type
request.env['CONTENT_TYPE']
和 和有什么不一样request.content_type
?- 为什么这两个值不同?