我从PHP脚本成功返回JSON,但如果JSON对象为空,则无法显示相应的消息。
邮件显示在ID为#precommentsload
的HTML UL标记中。
所以这里是jQuery从PHP脚本发送和返回数据:
$.post("api/searchComments.php", {uid:uid}, function(data)
{
if(data == '[]') // here's where I'm checking if JSON object is empty
{
console.log('no data'); // console displays this message when empty
// here's where I'm trying to output a message
var obj = JSON.parse(data);
$('#precommentsload').empty();
var htmlToInsert = obj.map(function(item)
{
return '<li>There were no comments.</li>';
}).join('');
$('#precommentsload').html(htmlToInsert);
}
else
{
console.log(data); // when object returns data, I can see it here
var obj = JSON.parse(data)
$('#precommentsload').empty();
var htmlToInsert = obj.map(function (item)
{
return '<li><b>' + item.add_date + ' - ' + item.add_user + '</b>
<br />' + item.comment.replace(/\r\n/g, '<br />') + '</li>';
// no problem displaying comments when object is not empty
}).join('');
$('#precommentsload').html(htmlToInsert);
}
});
在$ .post之后,我尝试了这个IF语句:
if(data == []) // without the single quotes
但是当对象为空时我只将[]返回到控制台。
关键是,当对象不为空时,我可以相应地显示消息。
当对象为空时,显示“没有评论”。
答案 0 :(得分:2)
var obj = JSON.parse(data);
返回一个空数组。当您尝试执行.map
时,您提供的回调函数永远不会执行,因为它只对数组中的项执行。
相反,为什么不跳过所有这些而只是做
var htmlToInsert = '<li>There were no comments.</li>'
$('#precommentsload').html(htmlToInsert);