gpt4 book ai didi

perl - 在 POST 方法的 URL 中传递参数

转载 作者:行者123 更新时间:2023-12-04 18:15:03 24 4
gpt4 key购买 nike

我正在尝试在 URL 中传递参数

例子:

// client side
URL: index.pl?action=view_user
METHOD: GET

#perl side

my $Q = CGI->new;
print $Q->param('action');

回复我 view_user但是当尝试在表单上通过示例发布时:
// client side
URL: index.pl?action=save_user
METHOD: POST
FORM:
username: test

#perl side

my $Q = CGI->new;
print $Q->param('action'), "-", $Q->param('username');

回复我 -test . 为什么 url 上的参数是空白的?

最佳答案

使用->url_param而不是 ->param在处理 POST 请求时从 URL 获取参数。

关于perl - 在 POST 方法的 URL 中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11909702/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com