嗨,大家好,我对php和jQuery json_encode
的$.getJSON
有一些疑问。
我一直试图创建一个通知系统,并在php
和jquery
的帮助下做到了。我现在可以从数据库中获取数据,而无需重新加载/刷新页面。
我有来自fetched
的database
数据,并在我的网站中显示它们,例如:-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
格式过程中对这些encoded
和json
进行了处理。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
进行检查