gpt4 book ai didi

php - 尝试将数组从 jquery 发送到 PHP 函数

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

我正在尝试在我的 JavaScript 中加载一个数组。我需要以某种格式将此数组发送到我要调用的 PHP 脚本。在下面的示例中,gSelectedMeds 是我的数组。 count 值将告诉 PHP 脚本期望接收多少个 meds 项目。我无法将数组中的数据转换为可以通过 $.ajax 的数据选项发送的格式。任何帮助将不胜感激!!

下面的代码中目前让我感到悲伤的部分是数据选项:

$('#export').click(function() {
$.ajax({
url:'ajax-exportMeds.php',
data:
{"number":gSelectedMeds.length},
$.each(gSelectedMeds,
function(intIndex, objValue){
{"med"+intIndex:objValue},
}
),
type: "GET",
//dataType: "text",
success: function(data){
$('p#allMeds').text('');
$('a.bank').text('');
//clear array, bank and storedList divs
$(this).text('');
gSelectedMeds[] = '';
//$('ul#storedList').fadeOut('fast');
$('ul#storedList').text('');
return false;
},
}),
});

最佳答案

您应该将数据发送为 json 。然后你可以使用 json_decode() 来阅读它在 php >= 5.2.0

关于php - 尝试将数组从 jquery 发送到 PHP 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1516949/

24 4 0
文章推荐: jquery - jQuery ('.foo' ).find ('.bar' ) 是否等同于 jQuery ('.bar' ,jQuery ('.foo' ))?
文章推荐: JQuery - url 位置和点击事件
文章推荐: jquery - 将 html 设置为
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com