我正在尝试在 jQuery ajax 方法中编写一些 if/else 条件。我不太了解 jQuery,所以我可能只是犯了一个愚蠢的小语法错误。但这里是:
function swapContent(count,product)
{
$.ajax(
{
type: "POST",
dataType: 'json',
url: "includes/price-update.php",
data: {countVar: count, ProductID: product},
success: function(data)
{
console.log(data);
$('.cleardata').remove();
$.each(data, function ()
{
$(".price-data").append(
$("<tr class='cleardata'/>")
if (data.InStock == "In Stock") {
$('.in-stock-row').text ('Yes');
}
else if (data.InStock == "Unavaiable"){
$('.in-stock-row').text ('No');
}
else{
$('.in-stock-row').text ('-');
}
.append("<td class='store-row'><h5 property='seller'>" + this.MerchantName + "</h5></td>")
.append("<td class='price-row'><h5 property='price'>$" + this.Price + "</h5></td>")
.append("<td class='in-stock-row'><h5>" + this.InStock + "</h5></td>")
.append("<td class='merch-row'><a property='url' target='_blank' href='" + this.PageURL + "' class='merch-but'>GET IT</a></td>")
);
})
}
});
}
</script>
除了 if/else 语句之外,一切都很好。我不确定是否return
是回显数据的正确方法。我是一个 PHP 人,所以 jQuery 仍然是全新的。谢谢你的帮助。
编辑:我只是根据一些建议更改了代码,这就是我所拥有的,现在我的表中没有任何显示。
第二次编辑:附加 JSON 数据的图像以进行调试。
第三次编辑:发布 PHP 数据
<?php
$countVar = $_POST['countVar'];
$ProductID = $_POST['ProductID'];
$data = PriceCompare($countVar, $ProductID);
echo json_encode($data);
function PriceCompare($countVar, $ProductID){
$DBH = new PDO('mysql:host=localhost;dbname=---','---','---');
$STH = $DBH->query('SELECT MerchantName, Price, PageURL, InStock
FROM merchants
WHERE ProductID=' . $ProductID .' AND Count=' . $countVar . '
ORDER BY Price');
$result = $STH->fetchAll();
return $result;
}
?>
fetchall
编辑四:通过将 php方法更改为下面的固定 JSON 数据的结果,从获取两组数据中修复了fetchall(PDO::FETCH_ASSOC)
JSON 数据。但是,在 In Stock 表字段中仍然没有得到正确的结果。