gpt4 book ai didi

jquery - 如何使用 $.post 发布数组?

转载 作者:行者123 更新时间:2023-12-01 00:05:15 24 4
gpt4 key购买 nike

这是我的数组:

arr[0]='A';
arr[1]='B';
....

我尝试以这种方式发布:

$.post('data.php',arr,function() {

});

但未能按预期工作。

最佳答案

来自manual :

data (Optional) Map, String

Key/value pairs or the return value of the .serialize() function that will be sent to the server.

从手册中的示例来看:

$.post("test.php", { 'choices[]': ["Jon", "Susan"] });

因此:

$.post("test.php", { 'arr[]': arr });

关于jquery - 如何使用 $.post 发布数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2063076/

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