Ricevo un elenco particolare di articoli del prodotto tramite ajax, passando il proprio ID univoco al server. Ora ogni prodotto ha il proprio set di proprietà che devo visualizzare a pagina con l'immagine del prodotto. Quando ho impostato i valori tramite jquery, è stato stampato solo l'ultimo valore nell'array. Di seguito sono riportati i miei file di codifica.imposta valori dall'array jquery di oggetti php?
images.php
while($fetch = mysql_fetch_array($result))
{
?>
<div class="col-sm-4">
<div class="thumbnail">
<a class="productitemid" href="productpurchase.php?id=<?php echo $fetch['itemID'];?>"><img class="img-responsive productimage" src="uploadedfiles\<?php echo $fetch['imageURL'];?>" alt="<?php echo $fetch['imageURL'];?>" /></a>
<div class="text-center productitemname" style="font-weight:bold;"><?php echo $fetch['itemName']; ?></div>
<div class="badge col-sm-offset-1 productprice"><?php echo $fetch['price']; ?></div>
<span class="col-md-offset-7"><a class="productitemid btn btn-success" href="productpurchase.php?id=<?php echo $fetch['itemID'];?>">BUY</a></span>
</div>
</div>
<?php
}
js File
$(document).ready(function(){
$('.menProdCatgry').on('click',function(){
$.ajax({
type: "post",
url: "getselectedproducts.php",
data:{
"prodId" : $('.menProdCatgry').attr('prodCatId')
},
dataType: "json",
success: function(data){
console.log(data);
$.each(data, function(){
var getprodId = this.prodId;
var getimageURL = this.imageURL;
var getprice = this.price;
var getitemName = this.itemName;
var getitemID = this.itemID;
$('.productimage').attr('src','uploadedfiles\/'+getimageURL);
$('.productitemname').text(getitemName);
$('.productprice').text(getprice);
$('.productitemid').attr('href','productpurchase.php?id='+getitemID);
});
},
error: function(data){
console.log(data);
}
});
});
});
gentilmente si prega di stampare la risposta quando si chiama ajax console.log (dati); –
[Object, oggetti, oggetti, oggetti, oggetti, oggetti, Object] oggetto 0 Prezzo: "800" imageURL: "a1.jpg" itemID: "55" itemName: "Printed Shirt Grigi" Allo stesso modo oggetto 1, 2 ... –