当前位置:   article > 正文

vue v-for 同时遍历两个组数_v-for遍历两个数组

v-for遍历两个数组

先说思路

  1. v-for 利用item 遍历一个数组 利用index 遍历另外一个数组
  2. 两个数组要求长度相同

需求:v-for 同时遍历两个数组

应用场景:

在这里插入图片描述

服务器请求到文章信息,对于最近一个七天发表的文章需要显示new图标 ,服务器请求的信息中有文章发表信息,不过需要自己判断是否为最近七天内发表的文章。
1.判断是否为七天内,结果用数组保存
computed: {
			newIconIsShow: function() {
				let _this = this
				let item = this.itemInfo.articleList
				let arr = []
				for (let i = 0; i < item.length; i++) {
					let res = compareTime(item[i].releaseTime, 99)
					arr.push(res)
				}
				console.log(arr)
				return arr
			}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
2.v-for 遍历文章信息
<div class="list-item" v-for="(item,index) in itemInfo.articleList" :key="index" @click="newsClick(item.id)">
					<div class="item-left">
						<p class="text_p">.&nbsp;{{item.title}}</p>
					</div>

					<div class="item-right">
						<new-icon v-show="newIconIsShow[index]"></new-icon>
						<span class="pubTime">{{item.releaseTime}}</span>
					</div>
				</div>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
v-for 遍历发布时间是否为七天内

在这里插入图片描述

总结:

  1. v-for 利用item 遍历一个数组 利用index 遍历另外一个数组:我这里利用item遍历了articleList数组,利用index遍历newIconIsShow数组
  2. 两个数组要求长度相同
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/76760
推荐阅读
相关标签
  

闽ICP备14008679号