我有带有图像和一些详细信息的Listview,如果没有数据,它应该返回一个带有消息的警报框,但是当我尝试该警报框时,我正在为此使用rflutter
如果没有数据,这就是我得到的东西
function dcbd_category_title() {
global $product;
$cats = get_the_terms($product->ID, 'product_cat');
foreach ($cats as $term) {
if ($term->parent > 0) {
echo $term->name;
}
}
}
如果json返回无数据,则警报框应弹出
图片列表代码
{
"status": true,
"Image": []
}
答案 0 :(得分:0)
您要检查是否为空,但应检查长度。
您的条件应如下。
if(resp.length < 0)