获取 eZ Publish 模板中的 POST 变量
我在模板中有一个表单(不是 eZ 生成的表单),它发布到另一个 eZ 页面。如何获取模板中的 POST 变量?
谢谢。
I have a form in a template (not a eZ generated form) which posts to another eZ page. How do I get the POST variables within the template?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样获取它:
您还可以像这样检索 get 和 session 变量。
您可以检查 文档页面。
You can get it like this :
You can also retrieve get and session variables like this.
You can check the documentation page.
在 EZ Publish 中构建表单处理的正确方法是创建如下表单:
其中 $node.url_alias 当前节点的别名 url。但您可以根据需要更改它。我不确定您作为视图参数的输入名称是否必须位于 () 中,但它对我有用。如果您这样做,则在目标节点模板中,您可以通过 $view_parameters 对象使用您的参数。
Proper way to build form form handling in EZ Publish is create form like this:
Where $node.url_alias alias url of current node. But you can change it on whatever you need. I am not sure if input name which you wnat as parameter to your view have to be in () but it works for me. If you do it like this, in target node template are your parameters avilable through $view_parameters object.