1

将记录插入数据库时​​,服务器返回“未定义索引:类别”错误,但仍然成功发布。

   $('#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 ]
     }
4

1 回答 1

3

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

   $('#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 
 });

现在再试一次

于 2012-06-23T03:15:54.673 回答