Kohana 3.2 request->headers['Content-Type'] 不断失败
由于某种原因,这在 Kohana 3.2 中不起作用:
$this->request->headers['Content-Type'] = 'text/xml';
自 Kohana 3.1 以来,这是否发生了变化?
This won't work in Kohana 3.2 for some reason:
$this->request->headers['Content-Type'] = 'text/xml';
Has this changed since Kohana 3.1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它也不应该在 3.1 中工作,但这应该:
参见 http://kohanaframework.org/ 3.2/guide/api/Request#headers
这是 3.1 版本中的请求/响应重构更改之一。
It should not work in 3.1 either, but this should:
See http://kohanaframework.org/3.2/guide/api/Request#headers
This was one of the Request/Response refactoring changes from 3.1.