gpt4 book ai didi

php - jQuery 将查询字符串值作为 POST 而不是 GET 发送

转载 作者:行者123 更新时间:2023-12-01 04:48:32 25 4
gpt4 key购买 nike

我的一个 php 页面已更改为处理 POST数据(为了容纳一些表单文本字段),而不是 GET (以前使用过)。

所以现在,而不是 if($_GET) { }它使用 if($_POST) { } 。他们(团队)不允许使用 || 这两种方法.

我需要使用 jQuery 将查询字符串发送到同一页面,但由于 if($_POST) { } ,它不会通过。

查询字符串的构成如下:<i class="icon-hand remove" data-handle="se25p37x"></i>

我以前使用 jQuery ajax 发送它,但现在不行了。知道如何将其作为 POST 发送吗?

$('.remove').live('click', function() {

var self = $(this);
var handle = $(this).data("handle");

if(handle) {
$.ajax({
type:"POST", // this used to be GET, before the change
url:"/user/actions/"+handle,
dataType:'json',

beforeSend:function(html) {

},

最佳答案

只需将 type: "GET" 更改为 type: "POST" 并添加 data 参数:

...
type: "POST",
data: $('form').serialize(), // OR data: {handle: $(this).data("handle")}
dataType: 'json',
...

关于php - jQuery 将查询字符串值作为 POST 而不是 GET 发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24731334/

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