简单的循环以及从接口获取数组对象的一个字段集合
生活随笔
收集整理的這篇文章主要介紹了
简单的循环以及从接口获取数组对象的一个字段集合
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1.簡單的循環(huán)字段循環(huán)
if (this.videolist) {console.log(111);for (let j = 0; j < this.videolist.length; j++) {if (this.videolist[j].video) {this.showVIdeo = false;return;} else {this.showVIdeo = true;}}} else {console.log(222);this.showVIdeo = true;}2.使用循環(huán)從接口獲取數(shù)組對象的一個字段集合
let list= [];for (let j = 0; j < res.data.result.xxoptization.length; j++) {if(res.data.result.xxoptization[j].video){let temporaryItem = {};temporaryItem.video = res.data.result.xxoptization[j].video;temporaryItem.videoimg = res.data.result.xxoptization[j].videoimg;temporaryItem.videoname = res.data.result.xxoptization[j].videoname;temporaryItem.title = res.data.result.xxoptization[j].title;list.push(temporaryItem);}}this.videolist.push(...list);?
轉(zhuǎn)載于:https://www.cnblogs.com/Glant/p/10921549.html
總結(jié)
以上是生活随笔為你收集整理的简单的循环以及从接口获取数组对象的一个字段集合的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: nginx正向代理 反向代理
- 下一篇: 增强学习--蒙特卡洛方法