代码片段中的 MODx POST 数据处理

发布于 2024-10-13 15:17:17 字数 90 浏览 0 评论 0原文

我是 Modx 新手,我想在处理传入帖子数据的代码片段中编写自定义代码。不幸的是,我似乎无法使用 $_POST 收集帖子数据。 有人能指出我正确的方向吗? 干杯 约翰

I am new to Modx and I want to write a custom but of code in a snippet that handles incoming post data. Unfortunately I can't seem to be able to collect the post data using $_POST.
Can anyone point me in the right direction please?
Cheers
John

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

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

发布评论

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

评论(3

甜`诱少女 2024-10-20 15:17:17

另外,如果您不希望缓存片段调用的结果,请使用 [[!getPost]] 而不是 [[getPost]]。

Also, if you do not wish to cache the results of the snippet call use [[!getPost]] rather than [[getPost]].

最初的梦 2024-10-20 15:17:17

我已经使用了

<?php
var_dump($_POST);

[[getPost]]

并且它起作用了(我得到了一个 0 的数组,但我没有在帖子中发送任何内容)

I've used

<?php
var_dump($_POST);

and [[getPost]]

and it worked (I got an array of 0, but I didn't send anything in post)

就是爱搞怪 2024-10-20 15:17:17

Vardump 是一个非常糟糕的主意。

MODx Revolution 对象非常巨大...

请尝试:

<?php
print_r($_REQUEST);

Vardump is a VERY bad idea.

The MODx Revolution Object is huge...

Please try:

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