我正在尝试使用 KnockOutJS 和 jQuery - 有什么方法可以检查下面的allData,看看它是否返回了任何东西?
如果没有,我想在屏幕上隐藏一个 div:
$(document).ready(function () {
$("#thankyou").hide(); // hide thank you box
$("#searchBtn").click(function () {
$.getJSON("/api/searchapi/", function (allData) {
sampleProductCategories = allData; // I want to check if this has returned anything?
if(!allData) { alert("nothing");}
cart.RoomCategories(sampleProductCategories);
});
});
});
Firebug 将空 JSON 显示为: