前言
在vue中,遍历数组和对象的方式略有不同,不能完全以数组或对象的遍历方式给对方使用并获取数据。为了记录以及以后方便查看,现在对其进行整理。
数组遍历
以数组
array = [1,2,3,4,5]
为例
数组的遍历有以下几种
- 获取数组的长度进行遍历
for (let i = 0; i<array.length;i++) {
Console.log("遍历后的数据",array[i]);
}
- 使用foreach遍历
array.foreach((index) => {
Console.log("遍历后的数组:",array[index]);
Console.log("下标:",index);
})
- Object.key()遍历
Object.key(array).foreach((index) => {
Console.log("遍历后数组:",array[index]);
Console.log("下标:",index);
})
- map遍历
array.map((index) => {
Console.log("遍历后数组:",array[index]);
Console.log("下标:",index);
})
- for… in遍历
for (let inedx in array){
Console.log("遍历后数组:",array[index]);
Console.log("下标:",index);
}
- for…of遍历
for (let index of array) {
Console.log("遍历后数组:",array[index]);
Console.log("下标:",index);
}
对象遍历
以对象
let obj = [
{
name: "张三",
age: "15",
},
{
name: "李四",
age: "26",
}
]
为例
- for … in … 遍历
for (let key in obj){
Console.log("下标:",key);
Console.log("遍历后每条数据:",obj[key]);
Console.loh("遍历后每天数据姓名属性值:",obj[key].name);
}
- Object.key()遍历
Object.keys(obj).forEach((key) => {
Console.log("下标:",key);
Console.log("遍历后每条数据:",obj[key]);
Console.loh("遍历后每天数据姓名属性值:",obj[key].name);
})
结语
以上为vue遍历数组和对象的方式。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/101154.html