简体   繁体   English

反正有没有将json数组发送到服务器端php并将其值插入表中?

[英]Is there anyway to send a json array to server side php and insert it's values in a table?

i am using ANgular 8 in client side and PHP 7 in server side . 我在客户端使用ANgular 8,在服务器端使用PHP 7。 i had problem to use the values of that array to insert them by query . 我在使用该数组的值通过查询插入它们时遇到问题。

i displayed the array by print_r and it show something like this: 我通过print_r显示了数组,它显示了这样的内容:

Array
(
    [0] => stdClass Object
        (
            [idprod] => 8
            [prix] => 2
            [qte] => 1
            [refCmd] => 35
        )

    [1] => stdClass Object
        (
            [idprod] => 9
            [prix] => 2.4
            [qte] => 5
            [refCmd] => 35
        )

)

the question is how to insert every object of that array in table called regrouper ? 问题是如何在称为regrouper的表中插入该数组的每个对象?

<?php

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Credentials: true ");
header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
header("Access-Control-Allow-Headers: X-Custom-Header, Origin, Content- 
Type , Authorisation , X-Requested-With");
header("Content-Type: application/json; charset=UTF-8 ");
$json = file_get_contents('php://input');
$decoded = json_decode($json);

$tab = $decoded->tab;
function conn()
{
$dbhost = "localhost";
$user = "root";
$pass = "";
$db = "smart";
$conn = new PDO('mysql:host=localhost;dbname=smart', $user, $pass);
return $conn;
}
$db = conn();
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$p = $db->prepare("INSERT INTO regrouper (refCommande, refProduit, prixP, 
qteP) VALUES(:refCmd,:refProduit,:prix,qte)");
foreach ($tab as $item) {
$p->execute([json_decode($item)]);
}
echo json_encode(true);
?>

i expect the table regrouper to have the first object on a row and the second object in another row 我希望表重组器在一行上有第一个对象,在另一行上有第二个对象

You don't need to call json_decode() twice. 您不需要两次调用json_decode() You already decoded it when you did 您已经完成解码了

$decoded = json_decode($json);

so you don't need to use json_decode($item) when inserting. 因此,插入时无需使用json_decode($item)

Use the true second argument to json_decode() so that it creates an associative array instead of an object for each item. json_decode()使用true第二个参数,以便为每个项目创建一个关联数组而不是对象。 Then you can pass that array to $p->execute() directly. 然后,您可以将该数组直接传递给$p->execute() You also need to use $decoded['tab'] instead of $decoded->tab . 您还需要使用$decoded['tab']代替$decoded->tab

<?php

header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Credentials: true ");
header('Access-Control-Allow-Methods: GET, PUT, POST, DELETE, OPTIONS');
header("Access-Control-Allow-Headers: X-Custom-Header, Origin, Content- 
Type , Authorisation , X-Requested-With");
header("Content-Type: application/json; charset=UTF-8 ");
$json = file_get_contents('php://input');
$decoded = json_decode($json, true);

$tab = $decoded['tab'];
function conn()
{
    $dbhost = "localhost";
    $user = "root";
    $pass = "";
    $db = "smart";
    $conn = new PDO('mysql:host=localhost;dbname=smart', $user, $pass);
    return $conn;
}
$db = conn();
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$p = $db->prepare("INSERT INTO regrouper (refCommande, refProduit, prixP, qteP)
                   VALUES(:refCmd,:refProduit,:prix,qte)");
foreach ($tab as $item) {
    $p->execute($item);
}
echo json_encode(true);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM