gpt4 book ai didi

javascript - 检查json数据数组是否为空

转载 作者:行者123 更新时间:2023-12-01 02:46:57 24 4
gpt4 key购买 nike

这是我的ajax代码,我需要检查json数据是否有数组?我怎么能够?我已经尝试过了,但它显示了错误的输出。

$.ajax({
url: url,
type: 'POST',
data: {'data': data},
dataType: "json",
success: function (data) {
if(data)
{
console.log('data is there');
}
else
{
console.log('data is not there');
}

这是我对 ajax 的回应。

<?php
$json_data_array = '[]';
return $json_data_array;
?>

如何检查?

最佳答案

您需要检查它的长度。条件 if(array) 中的数组在没有项时为 true。

if([]) {
console.log('True');
}

检查长度属性

if([].length) {
console.log('True');
}

关于javascript - 检查json数据数组是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47196289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com