Jquery ajax检查结果是否为空

Jquery ajax Check if there results are empty

本文关键字:是否 结果是 结果 ajax 检查 Jquery      更新时间:2023-09-26

我使用以下代码从数据库中提取数据,并使用谷歌地图绘制点。我想做的是,"如果response=null,alert('empty')"之类的事情,但每次我试图将其处理到代码中时,总会有一些东西中断。如果有人能提供任何帮助,那就太棒了。这是我的代码:

<script type="text/javascript">
$(function ()
{
    var radius3 = localStorage.getItem("radius2");
    var lat3 = localStorage.getItem("lat2");
    var long3 = localStorage.getItem("long2");
    var type2 = localStorage.getItem("type2");
    var citya = localStorage.getItem("city2");
    var rep2 = localStorage.getItem("rep2");
    var size2 = localStorage.getItem("size2");
    var status2 = localStorage.getItem("status2");

    $.ajax({
        url: 'http://examplecom/test/www/base_search.php',
        data: "city2=" + city2 + "&rep2=" + rep2 + "&status2=" + status2 + "&size2=" + size2 + "&type2=" + type2 + "&long2=" + long2 + "&lat2=" + lat2 + "&radius2=" + radius2,
        type: 'post',
        dataType: 'json',
        success: function (data) {
            if (data) {
                $.each(data, function (key, val) {

                    var lng = val['lng'];
                    var lat = val['lat'];
                    var id = val['id'];
                    var name = val['name'];
                    var address = val['address'];
                    var category = val['category'];
                    var city = val['city'];
                    var state = val['state'];
                    var rep = val['rep'];
                    var status = val['status'];
                    var size = val['size'];
                    $('div#google-map').gmap('addMarker', {
                        'position': new google.maps.LatLng(lat, lng),
                        'bounds': true,
                        'icon': 'images/hospital.png'
                    }).click(function () {
                        $('div#google-map').gmap('openInfoWindow', {
                            'backgroundColor': "rgb(32,32,32)",
                            'content': "<table><tr><td>Name:</td><td>" + name + "</td></tr><tr><td>Address:</td><td>" + address + ", " + city + "&nbsp;" + state + "</td></tr><tr><td>Category:</td><td>" + category + "</td></tr><tr><td>Rep:</td><td>" + rep + "</td></tr><tr><td>Status:</td><td>" + status + "</td></tr><tr><td>Size:</td><td>" + size + "</td></tr></table>"
                        }, this);

                    });
                } else {
                    alert('hello');
                }
                }
            })
    }
    });

})
}

</script>

类似的东西

success: function (data) {
    if(!data) {
        alert('empty');
        return;
    }
    $.each(data, function (key, val) { ...

应该起作用。

类似的东西!

success: function (data) {
if(data.length == 0) {
    alert('empty');
    return;
}

类似的东西?

       success: function (data) {
           if(data){
               //do your stuff here
           }
           else{
               alert('empty');
           }
        }