Answer the question
In order to leave comments, you need to log in
How to get rid of double quotes in json array?
There is a record of the $product object and a translation of the $product object into an array:
if (isset($_POST['get_product'])){
$product_id = $_POST['product_id'];
global $connection;
$query = "SELECT * FROM product WHERE id = '$product_id'";
$res = mysqli_query($connection, $query);
$product= [];
while($row = mysqli_fetch_assoc($res)) {
$product_id = $row['id'];
$product[$product_id] = [
'product_id' => $row['id'],
'product_title' => $row['title'],
'product_image' => $row['image'],
'product_text' => $row['text'],
];
}
echo json_encode(array_values($product));
}
let PRODUCTS = [];
function getProducts(){
$.ajax({
type: "POST",
dataType: 'JSON',
url: "http://sait/api/api_product.php",
data: "product_id="+product_id+
"&get_product=yes",
error: function(){
swal("Ошибка!","Проверьте Интернет-соединение и повторите попытку","error");
}
})
.then(showProducts)
.catch(err=>{
errorMessage(err.message);
});
}
function showProducts(products){
PRODUCTS = products;
console.dir(PRODUCTS);
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question