4

我正在尝试使用 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 显示为:

在此处输入图像描述

4

1 回答 1

6

由于您的“空数据”是一个空数组,因此只需测试它的长度。

if (allData.length) {
    // we have data
}
else {
    // we don't have data
}
于 2013-04-01T15:21:50.980 回答