gpt4 book ai didi

PHP + jQuery - 未定义索引 : , 但它仍然成功发布?

转载 作者:行者123 更新时间:2023-12-01 08:15:02 25 4
gpt4 key购买 nike

向数据库插入记录时,服务器返回“ undefined index :类别”错误,但仍然发布成功。

   $('#button').click(function(){
var newvendor = $('#input_vendor').val();
newplantcode = $('#input_plantcode').val();
newcategory = $('#input_category').val();

$.post("php/addSite.php",
{vendor: newvendor,
plant_code: newplantcode,
category: newcategory}, // <--- Error on this line, for some reason...


function(result){
console.log("server returned : " + result);
[ RELOAD THE PAGE ]
}

最佳答案

您几乎所有代码中都缺少引号:

   $('#button').click(function(){
var newvendor = $('#input_vendor').val();
var newplantcode = $('#input_plantcode').val();
var newcategory = $('#input_category').val();

$.post("php/addSite.php",
{vendor: newvendor,
plant_code: newplantcode,
category: newcategory}, // <--- Error on this line, for some reason...


function(result){
console.log("server returned : " + result);
[ RELOAD THE PAGE ]
}
//closing the post function
)
//closing the click event
});

现在再试一次

关于PHP + jQuery - 未定义索引 : , 但它仍然成功发布?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11166498/

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