将 addActionContext() 更改为仅 XML

发布于 2024-10-25 23:07:39 字数 179 浏览 2 评论 0原文

我的 Zend 代码如下所示:

$contextSwitch->addActionContext('get', array('xml','json'))->initContext();

如何更改它以便它仅返回 XML 格式的数据?抱歉,我是 Zend 编程新手。!

I've got Zend code which looks like this:

$contextSwitch->addActionContext('get', array('xml','json'))->initContext();

How can I change this so that it ONLY returns XML formatted data? SOrry, I'm new to Zend programming.!

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

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

发布评论

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

评论(2

可爱暴击 2024-11-01 23:07:39

阅读手册< /a>

public function init()
{
    $this->_helper->contextSwitch()
        ->addActionContext('get', array('xml','json'))
        ->initContext();
}

public function getAction()
{
    this->_helper->contextSwitch()->initContext('xml'); //will always use xml if action has xml context
    //...
}

Read the manual

public function init()
{
    $this->_helper->contextSwitch()
        ->addActionContext('get', array('xml','json'))
        ->initContext();
}

public function getAction()
{
    this->_helper->contextSwitch()->initContext('xml'); //will always use xml if action has xml context
    //...
}
半寸时光 2024-11-01 23:07:39

如果您仅将 xml 用于特定操作,请在要返回 xml 的操作内设置标头:

$this->getResponse()->setHeader('Content-type', 'text/xml');

然后根据需要处理操作的其余部分。如果没有启用上下文切换,视图将是操作的默认视图(即actioname.phtml)

您可能还想禁用布局:

$this->_helper->layout->disableLayout();

If you only ever use xml for a particular action, set the headers inside the action you want to return xml:

$this->getResponse()->setHeader('Content-type', 'text/xml');

And then process the rest of the action as you need it to. Without context switching enabled the view will be the default for the action (ie. actioname.phtml)

You will probably also want to disable your layout:

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