嗨,大家好,我对php和jQuery json_encode$.getJSON有一些疑问。

我一直试图创建一个通知系统,并在phpjquery的帮助下做到了。我现在可以从数据库中获取数据,而无需重新加载/刷新页面。

我有来自fetcheddatabase数据,并在我的网站中显示它们,例如:-

Jquery代码

$.getJSON("notifi.php",function(data){

$(".display_noti").empty(); // Clear out the div

$.each(data.result,function(){

     $(".display_noti").append("<div class='palnotific'>You got a
          friend request from <strong>"+this['from']+"</strong><br></div>");

   });

});


php方面,我只是从table获取数据,而我encoded最后以json格式存储数据,这与我的问题无关。

这是我的php从notifi.php文件中产生的内容,我在fetched格式过程中对这些encodedjson进行了处理。

Json encoded格式

{"result":[{"from":"hancy061","to":"souraan061"}]}


我的问题现在在使用jquery条件的if and else端,如何检查该notifi.php中是否有值数据,或者我们可以说该json格式数据?

最佳答案

如果您知道data是返回空的json数据还是有数据,请尝试像这样检查它:

$.getJSON("notifi.php",function(data){
  // you can do checking here
  if ( data && data.length > 0 ) {
     $(".display_noti").empty(); // Clear out the div
     $.each(data.result,function(){
       $(".display_noti").append("<div class='palnotific'>You got a
         friend request from <strong>"+this['from']+"</strong><br></div>");
     });
  }
  else {
    // do something here if no data
  }
});


也许data返回了一些值,即使属性内有一个空数据(例如刚刚返回的{"result":[]}),也可以通过data.result.length进行检查

07-24 18:11
查看更多