vue 模板 v-if 判断数组是否为空 :

为空:array == undefined ||array == null || array.length <= 0     (顺序不能调换)

不为空: array !==undefined && array != null  && array.length > 0   (顺序不能调换)

示例:

<ul v-if="commentList == undefined ||commentList == null || commentList.length <= 0 " >
	暂无评论!
</ul>

<ul v-if="commentList != undefined && commentList != null && commentList.length > 0 " >
	<li class="list-group-item"  v-for="(item,index) in commentList"  >
		<div class="username">
			{{ item.username }} 说:
		</div>
		<div class="content" >
			{{ item.content }}
		</div>
	</li>
</ul>
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐