Description of the writing method of foreach array in Vue and traversal array in js

Description of the writing method of foreach array in Vue and traversal array in js

How to write Vue foreach array and traverse array in js

Scenario

Use Axios in Vue to send get or post requests. When sending requests, you need to use js

Traverse and process the request parameters.

When receiving a response, you need to traverse and process the response result.

Note the difference between foreach arrays in Vue and JS.

accomplish

Iterating over an array in js

//Define the shift details array var bcglxiangxiList = new Array();
  //Define shift details object var bcxiangxi = {};
  // Loop through the parameters bcglXiangXiListParam.forEach(element => {
    bcxiangxi.xh = element.xh;
    bcxiangxi.bcbh = data.bcbh;
    bcxiangxi.dkkssj = element.sjfw[0];
    bcxiangxi.dkjssj = element.sjfw[1];
    bcxiangxi.ts = element.ts;
    bcxiangxi.dkdd = element.dkdd;
    bcxiangxi.zxjxljsj = element.jxsjfw[0];
    bcxiangxi.zdjxljsj = element.jxsjfw[1];
    //Store the shift details object into the shift details array bcglxiangxiList.push(bcxiangxi);
  });

Iterating over an array in vue

 var bcglxiangxiList = new Array();
        var bcxiangxi = {};
        debugger;
        if (
          response.data.bcglXiangXiList != null &&
          response.data.bcglXiangXiList.length > 0
        ) {
          console.log(response.data.bcglXiangXiList);
          response.data.bcglXiangXiList.forEach((item, index) => {
            console.log(item);
            bcxiangxi.xh = item.xh;
            bcxiangxi.bcbh = item.bcbh;
            //debugger
            bcxiangxi.sjfw = new Array();
            bcxiangxi.sjfw[0] = item.dkkssj;
            bcxiangxi.sjfw[1] = item.dkjssj;
            bcxiangxi.ts = item.ts;
            bcxiangxi.dkdd = item.dkdd;
            bcxiangxi.jxsjfw = new Array();
            bcxiangxi.jxsjfw[0] = item.zxjxljsj;
            bcxiangxi.jxsjfw[1] = item.zdjxljsj;
            bcglxiangxiList.push(bcxiangxi);
          });
        }

You can see that the traversal method is the same. In js, you can also use the traversal method with two parameters.

  //Define the shift details array var bcglxiangxiList = new Array();
  //Define shift details object var bcxiangxi = {};
  // Loop through parameters bcglXiangXiListParam.forEach((element,index) => {
    bcxiangxi.xh = element.xh;
    bcxiangxi.bcbh = data.bcbh;
    bcxiangxi.dkkssj = element.sjfw[0];
    bcxiangxi.dkjssj = element.sjfw[1];
    bcxiangxi.ts = element.ts;
    bcxiangxi.dkdd = element.dkdd;
    bcxiangxi.zxjxljsj = element.jxsjfw[0];
    bcxiangxi.zdjxljsj = element.jxsjfw[1];
    //Store the shift details object into the shift details array bcglxiangxiList.push(bcxiangxi);
  });

vue forEach loop usage

//data is a collection data.forEach(function(item, index) {
            //item is the object that is looped on that day //index is the loop index, starting from 0})

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue forEach loop array to get the data you want
  • Detailed explanation of the principle analysis and practical application of Vue array traversal methods forEach and map
  • Vue must learn knowledge points: the use of forEach()

<<:  CentOS 8 Installation Guide for Zabbix 4.4

>>:  Detailed explanation of grep and egrep commands in Linux

Recommend

Docker deploys mysql remote connection to solve 2003 problems

Connecting to MySQL Here I use navicat to connect...

MySQL 20 high-performance architecture design principles (worth collecting)

Open Source Database Architecture Design Principl...

How to gracefully and safely shut down the MySQL process

Preface This article analyzes the process of shut...

Detailed explanation of how to solve the problem of too long content in CSS

When we write CSS, we sometimes forget about the ...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

The DOCTYPE mode selection mechanism of well-known browsers

Document Scope This article covers mode switching...

React's component collaborative use implementation

Table of contents Nesting Parent-child component ...

Detailed analysis of the chmod command to modify file permissions under Linux

Use the Linux chmod command to control who can ac...

Linux Operation and Maintenance Basic System Disk Management Tutorial

1. Disk partition: 2. fdisk partition If the disk...

mysql 5.7.18 winx64 password change

After MySQL 5.7.18 is successfully installed, sin...

Neon light effects implemented with pure CSS3

This is the effect to be achieved: You can see th...

Node+socket realizes simple chat room function

This article shares the specific code of node+soc...

How to connect to a remote docker server with a certificate

Table of contents 1. Use scripts to encrypt TLS f...

Concat() of combined fields in MySQL

Table of contents 1. Introduction 2. Main text 2....