获取 eZ Publish 模板中的 POST 变量

发布于 2024-08-22 01:06:37 字数 74 浏览 8 评论 0原文

我在模板中有一个表单(不是 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 技术交流群。

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

发布评论

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

评论(2

对你而言 2024-08-29 01:06:37

您可以这样获取它:

ezhttp('my_variable_name', 'POST')

您还可以像这样检索 get 和 session 变量。

您可以检查 文档页面

You can get it like this :

ezhttp('my_variable_name', 'POST')

You can also retrieve get and session variables like this.

You can check the documentation page.

倥絔 2024-08-29 01:06:37

在 EZ Publish 中构建表单处理的正确方法是创建如下表单:

<form method="post" action={"content/action"|ezurl}>
    <input type="hidden" name="DestinationURL" value="{$node.url_alias}" />
    <input name="(your_parameter_name)" type="text" value="parameter value">

其中 $node.url_alias 当前节点的别名 url。但您可以根据需要更改它。我不确定您作为视图参数的输入名称是否必须位于 () 中,但它对我有用。如果您这样做,则在目标节点模板中,您可以通过 $view_parameters 对象使用您的参数。

$view_parameters.<name of your form field>

Proper way to build form form handling in EZ Publish is create form like this:

<form method="post" action={"content/action"|ezurl}>
    <input type="hidden" name="DestinationURL" value="{$node.url_alias}" />
    <input name="(your_parameter_name)" type="text" value="parameter value">

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.

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