从php json解码中检索json数组

时间:2017-07-17 03:07:38

标签: javascript php json ajax

我有一个javascript来创建json数组,它有一个ajax post方法,我必须知道这个json数组应该如何在php端解码?

我的javascript函数:

var invoices = {invoice: [{ "customerName" : "John" ,"reciptionName" : "Doe" ,"datee" : "2017-09-09" ,"total" : tot }], invoiceLine: []};

    for(i=1; i<=count+arr.length-1; i++){

        var ss = String(i);
        if(arr.includes(ss)){
            continue;
        }
        invoices.invoiceLine.push({

            "itemName" : document.getElementById('item'+i).value ,
            "qty" : document.getElementById('inputQty'+i).value ,
            "value" : document.getElementById('value'+i).value
        });
    }

    $.ajax({
    type: "POST",
    url: "saveInvoice.php",
    data: {json : JSON.stringify(invoices)},
    cache: false,
    success: function(data) {
    alert(data);
    location.reload();
    }
    });

这是我的php :(它不会将数据保存到数据库。我现在要将第一张发票数据保存在数据库中。然后我可以将invoiveLine数据用于另一个表插入。)

$dbhost = "localhost";
    $dbuser = "root";
    //$dbpass = "dbpassword";
    $dbname = "inventory";

    $jsonInvoice = json_decode($POST['invoices'],true);

    $customerName = $jsonInvoice.["invoice"][0].["customerName"];
    $reciptionName = $jsonInvoice.["invoice"][0].["reciptionName"];
    $date = $jsonInvoice.["invoice"][0].["datee"];
    $total = $jsonInvoice.["invoice"][0].["total"];



    mysql_connect($dbhost, $dbuser, '');

    mysql_select_db($dbname) or die(mysql_error());

    $query = "insert into invoice (customerName,reciptionName,date,total) values ('$customerName','$reciptionName','$date',$total)";

    $qry_result = mysql_query($query) or die(mysql_error());

    $insertId = mysql_insert_id();

    echo $insertId;

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

$customerName = $jsonInvoice["invoice"][0]["customerName"];

我认为你得到了由点造成的sintax错误。 json_decode返回一个数组,你必须以我上面写的方式访问属性。 (有关详细信息,请参阅this

另外,请注意其他用户提供的有关mysqli的建议