gpt4 book ai didi

javascript - 检查集合是否不为空

转载 作者:行者123 更新时间:2023-12-01 02:16:39 27 4
gpt4 key购买 nike

在尝试对其执行操作之前,如何检查下面的 data.results 是否不为空?

$.getJSON(myurl, function(data) {
// if data.results is not empty
// {
// console.log(data.results.size);
// }

});

最佳答案

if (data != null && data.results != null && data.results.length > 0) {
// the array is not empty
}

关于javascript - 检查集合是否不为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4106232/

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