将 addActionContext() 更改为仅 XML
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阅读手册< /a>
Read the manual
如果您仅将 xml 用于特定操作,请在要返回 xml 的操作内设置标头:
然后根据需要处理操作的其余部分。如果没有启用上下文切换,视图将是操作的默认视图(即actioname.phtml)
您可能还想禁用布局:
If you only ever use xml for a particular action, set the headers inside the action you want to return 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: