添加 URL 参数以使用 Zend Framework 切换视图的最佳方法是什么?
我正在使用 Zend 框架开发一个移动网站,该网站有两种可能的输出格式(WML 和 XHTML)。 我使用相同的模型和控制器,然后只需在控制器中设置要渲染的视图。 目前,这是由 HTTP Accept 标头决定的。 这也需要在 URL 中定义。 我想要执行此操作的方法是使用如下 URL: http://example.com/wml/controller/action http://example.com/xhtml/controller/action
实现此目标的最佳方法是什么使用 Zend 框架?
谢谢!
I'm developing a mobile site using Zend framework, and the site has two possible output formats (WML and XHTML).
I'm using the same models and controllers, and then just setting which view to render with in the controller. At the moment, this is decided on by the HTTP Accept header.
This needs to be definable in the URL as well.
The way I'd like to do this is with a URL like the following:
http://example.com/wml/controller/action
http://example.com/xhtml/controller/action
What's the best way to achieve this using the Zend Framework?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要查看“操作助手”部分下的上下文切换 。 您可以通过 URL 传递格式参数,它将更改来自操作的输出类型。 您应该能够轻松地为 WML 创建 Context 类。
因此,您的 URL 如下所示:
http://www.example.com/controller/动作/格式/wml
You need to look at Context Switching under the Action Helpers section. You can pass a format parameter via the URL and it will change the type of output that comes from the action. You should be able to easily create a Context class for WML.
So instead your URL looks like this:
http://www.example.com/controller/action/format/wml