我是靠谱客的博主 缥缈彩虹,最近开发中收集的这篇文章主要介绍简单的循环以及从接口获取数组对象的一个字段集合,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.简单的循环字段循环

  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.使用循环从接口获取数组对象的一个字段集合

   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);

 

转载于:https://www.cnblogs.com/Glant/p/10921549.html

最后

以上就是缥缈彩虹为你收集整理的简单的循环以及从接口获取数组对象的一个字段集合的全部内容,希望文章能够帮你解决简单的循环以及从接口获取数组对象的一个字段集合所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部