gpt4 book ai didi

javascript - jQuery Ajax 传递带有预定义变量的数组

转载 作者:行者123 更新时间:2023-12-02 17:59:13 26 4
gpt4 key购买 nike

我已经设置了一个函数来收集表单的内容并将其提交到 PHP 页面,然后让 PHP 页面处理它并返回成功消息。唯一的问题是,当我通过 POST 发送此内容(或就此问题获取)时,实际上没有任何内容到达 PHP 页面...。

function add_new_customer(){
$('.new-customer-con .submit-new-customer').click(function(){
search_path = $('.search-rel-path').val()+'insert/insert_new_customer';
var textinput = [];
$('.new-customer-con input:text').each(function(e){
if($(this).length > 0){
textinput[$(this).attr('name')] = $(this).val();
}
});
$('.new-customer-con textarea').each(function(e){
if($(this).length > 0){
textinput[$(this).attr('name')] = $(this).val();
}
});
var call_back_btn = $('.new-customer-con button[name=call_back]');
if(call_back_btn.text().toLowerCase() === 'no'){var call_back = 'false'; } else{var call_back = 'true'; }
textinput[call_back_btn.attr('name')] = call_back;
var shipping_method = $('.new-customer-con select');
textinput[shipping_method.attr('name')] = shipping_method.children('option:selected').val();
$.ajax({
url: search_path,
type: 'POST',
dataType: 'html', // in html mode for debugging

data: { data: textinput }
})
.done(function(data) {
console.log(data);
if(data['success']){
$('html, body').animate({scrollTop: $('.new-customer-con').offset().top }, 500);
$('.new-customer-con .alert-message').addClass('alert-success').hide().fadeIn('slow').text("Successfully inserted "+textinput['customer_name']);
var timeout = setTimeout(function(){$('.new-customer-con .alert-message').fadeOut('fast').text('').removeClass('alert-success');},2000);
}
})
.fail(function() {
console.log("error");
})
.always(function() {

});

});
}

不确定我做错了什么,但是有没有更好的方法来发送数组,或者我是否必须以不同的方式格式化它?抱歉,我通常知道我在用 PHP 做什么,但 javascript 中的数组有点让我头疼。

最佳答案

试试这个 data: textinput 而不是 data: { data: textinput }

关于javascript - jQuery Ajax 传递带有预定义变量的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20708878/

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