Kohana 3.2 request->headers['Content-Type'] 不断失败

发布于 2024-11-28 03:07:12 字数 154 浏览 1 评论 0原文

由于某种原因,这在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泅渡 2024-12-05 03:07:12

它也不应该在 3.1 中工作,但这应该:

$this->request->headers('Content-Type', 'text/xml');

参见 http://kohanaframework.org/ 3.2/guide/api/Request#headers
这是 3.1 版本中的请求/响应重构更改之一。

It should not work in 3.1 either, but this should:

$this->request->headers('Content-Type', 'text/xml');

See http://kohanaframework.org/3.2/guide/api/Request#headers
This was one of the Request/Response refactoring changes from 3.1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文