gpt4 book ai didi

php - jQuery : pass an array in ajax

转载 作者:可可西里 更新时间:2023-11-01 00:14:36 24 4
gpt4 key购买 nike

我有一个包含多个相同字段的表单:

<input type="text" id="qte" value="" name="qte[]">

如何在我的文件处理中传输数组?

我注意到ajax发送的数组变成了字符串

$("#form_commande").submit(function(event){

var qte = $("#qte").val();

if(qte== '')
{
$('#qte_message').html("KO QTE");
}
else
{
$.ajax({
type : "POST",
url: $(this).attr('action'),
data: $(this).serialize(),
success : function(){
$('#form_commande').html('<p>OK</p>');
},
error: function(){
$('#form_commande').html("<p>KO</p>");
}
});
}
return false;

最佳答案

在 jquery 中获取值,例如:

$("#form_commande").submit(function(event){

var qte_array = new Array();
$('input[name="qte[]"]').each(function(){
qte_array.push($(this).val());
});

if(qte_array.length== 0)
{
$('#qte_message').html("KO QTE");
}
else
{
$.ajax({
type : "POST",
url: $(this).attr('action'),
data: {qte:qte_array},
success : function(){
$('#form_commande').html('<p>OK</p>');
},
error: function(){
$('#form_commande').html("<p>KO</p>");
}
});
}
});

并在 php 中获取它,例如:

$qte = $_POST["qte"];

这里是一个数组

关于php - jQuery : pass an array in ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18575809/

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