我在将 Kohana 3 中的内容类型更改为 XML 时遇到一些问题

发布于 2025-01-07 15:15:14 字数 880 浏览 0 评论 0原文

这是我的代码:

class Controller_Call extends Controller {

    public $template = 'tpl/default';

    public function before() {

            parent::before();

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

            $this->template = View::factory($this->template);

    }

    public function action_index() {

            $this->template->response = '<say>Hey! How are you budy!</say>';

    }

    public function after() {

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

            $this->response->body( $this->template );

            parent::after();

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

    }

}

当我在 Firefox 中加载页面并查看 Content-Type 时,我得到 text/html。

这是为什么?

预先非常感谢

Here is my code:

class Controller_Call extends Controller {

    public $template = 'tpl/default';

    public function before() {

            parent::before();

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

            $this->template = View::factory($this->template);

    }

    public function action_index() {

            $this->template->response = '<say>Hey! How are you budy!</say>';

    }

    public function after() {

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

            $this->response->body( $this->template );

            parent::after();

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

    }

}

When I load the page in firefox and I look at the Content-Type, I get text/html.

Why is that?

Thank you very much in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风铃鹿 2025-01-14 15:15:14

您需要在响应上设置标头:

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

You need to set the headers on the response:

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