我制作PHP API来插入 JSON 对象数据的多行。我的 JSON数据格式是这样的:
(我在控制台日志中收到console.log(this.state.cartItems [])的以下格式。在REACT中)
0: {SparePartID: "34", qty: 1, Price: "500", OrderID: "14"}
1: {SparePartID: "35", qty: 1, Price: "250", OrderID: "14"}
2: {SparePartID: "36", qty: 1, Price: "430", OrderID: "14"}
我的PHP Api代码如下:
---> part_order_details.php
<?php
header("Access-Control-Allow-Origin: http://localhost/Auth/");
header("Content-Type: application/json; charset=UTF-8");
header("Access-Control-Allow-Methods: POST");
header("Access-Control-Allow-Origin: *");
header("Access-Control-Max-Age: 3600");
header("Access-Control-Allow-Headers: Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With");
include_once '../config/database.php';
include_once '../objects/order.php';
$database = new Database();
$db = $database->getConnection();
$order = new Order($db);
$a = file_get_contents("php://input");
$data = json_decode($a, true);
if($order->orderDetails($data)){
http_response_code(200);
echo json_encode(array(
"message" => "All rows of Order Details are inserted.",
));
}
else{
http_response_code(400);
echo json_encode(array("message" => "Sorry! Error while inserting rows of order details"));
}
?>
和-----> order.php 是:
<?php
class Order{
private $conn;
public $SparePartID;
public $OrderID;
public $Price;
public $Quantity;
public function __construct($db){
$this->conn = $db;
}
function orderDetails($arr)
{
$query= "INSERT INTO sparepartorderdetails (SparePartID, OrderID, Quantity, Price) VALUES
(:SparePartID, :OrderID, :qty, :Price) ";
$stmt = $this->conn->prepare($query);
foreach($arr as $item)
{
$stmt->bindValue(':SparePartID', $item[0]);
$stmt->bindValue(':qty', $item[1]);
$stmt->bindValue(':Price', $item[2]);
$stmt->bindValue(':OrderID', $item[3]);
if($stmt->execute()){
return true;
}
else{
$arr = $stmt->errorInfo();
print_r($arr);
}
}
}
}
目前,我正在尝试使用 POSTMAN 测试PHP API。 因此,我将这些数据发送给邮递员正文以供 POST 请求
:
{
"0":
{"SparePartID": "34",
"qty": "1",
"Price": "500",
"OrderID": "14"},
"1":
{"SparePartID": "35",
"qty": "1",
"Price": "250",
"OrderID": "14"}
}
但是POSTMAN显示错误状态: 400错误的请求和msg: { “消息”:“抱歉!插入订单明细行时出错” }
我搜索了很多这个问题,但没有解决方案。 我是否缺少某些东西或使用错误的方式插入了多个JSON行?请帮我!
答案 0 :(得分:1)
您的问题主要在于此行:
$data = json_decode($a, true);
与数据绑定有关:
$stmt->bindValue(':SparePartID', $item[0]);
$stmt->bindValue(':qty', $item[1]);
$stmt->bindValue(':Price', $item[2]);
$stmt->bindValue(':OrderID', $item[3]);
当您将json_decode
与true
参数关联时,您得到的数据将是一个数组数组,其键是字符串,而不是整数。因此,您需要将访问每个属性的方式从整数索引更改为字符串索引。您可以将bindValue出现的内容更改如下:
$stmt->bindValue(':SparePartID', $item['SparePartID']);
$stmt->bindValue(':qty', $item['qty']);
$stmt->bindValue(':Price', $item['Price']);
$stmt->bindValue(':OrderID', $item['OrderID']);
上述解决方案的替代方法是更改json_decode
的使用方式。删除true
并更新您的bindValue
事件以使用对象属性访问(因为现在数据将被解码为对象而不是数组):
$data = json_decode($a);
$stmt->bindValue(':SparePartID', $item->SparePartID);
$stmt->bindValue(':qty', $item->qty);
$stmt->bindValue(':Price', $item->Price);
$stmt->bindValue(':OrderID', $item->OrderID);
关于$stmt->execute
使用的最后一点是,在第一次循环迭代之后,您的函数将return true
(如果成功)。它永远不会完成剩余的项插入。您应该删除早期的return
语句,并找到返回成功/失败指示符的更好方法。