为什么我得到 typeError 值为 null 但在我的萤火虫中我可以有值而不是 null,有什么问题?
这是我的ajax代码:
$.ajax({
url: 'get-products.php',
type: 'post',
datatype: 'json',
data: { category: $('.category').val().trim(), keyword: $('.keyword').val().trim() },
success: function(data){
var toAppend = '';
toAppend += '<thead><th>Product Name</th><th>Image</th><th>Price</th><th>Weight</th><th>ASIN</th><th>Category</th></thead>';
if(typeof data === "object"){
for(var i=0;i<data.length;i++){
toAppend += '<tr><td>'+
data[i]['product_name'][0]+'</td><td><img src="'+
data[i]['image'][0]+'" alt=""></td><td>'+
data[i]['price'][0]+'</td><td>'+
data[i]['weight']+'</td><td>'+
data[i]['asin'][0]+'</td><td>'+
data[i]['category'][0]+'</td></tr>';
}
$('.data-results').append(toAppend);
}
}
});
这是我的 php 代码,我知道这是有效的:
foreach($xml->Items->Item as $item){
$items_from_amazon[] = array(
'asin'=>$item->ASIN,
'product_name'=>$item->ItemAttributes->Title,
'image'=>$item->SmallImage->URL,
'price'=>$item->ItemAttributes->ListPrice->FormattedPrice,
'category'=>$item->ItemAttributes->ProductGroup,
'weight' => (string) $item->ItemAttributes->PackageDimensions->Weight.' lbs');
}
echo json_encode($items_from_amazon);
?>
这是我的萤火虫的结果:
这是我的示例输出,即使图像中仍然有空结果,我还能显示结果吗?如果图像为空,则不显示图像