How vue.js traverses an array
Vue.js method of traversing arrays: 1. Use a foreach loop, the code is [this.urls.forEach(item =>]; 2. Use a filter loop, the code is [return this.urls.filter (item =>】.
- ##This method is suitable for all brands of computers
vue.js method of traversing arrays:
1, foreach
search(keyword){ var newList = [] this.urls.forEach(item =>{ if(item.name.indexOf(keyword) != -1){ newList.push(item) } }) return newList }
2、filter
search(keyword){ return this.urls.filter(item =>{ if(item.name.includes(keyword)){ return item } }) }
3, findIndex
del(row){ this.$confirm("确定要删除吗?", "删除").then(action=>{ var index = this.urls.findIndex(item =>{ if(item.name == row.name){ return true; } }) this.urls.splice(index, 1) });
4, some
del(row){ this.$confirm("确定要删除吗?", "删除").then(action=>{ this.urls.some((item, i) =>{ if(item.name == row.name){ this.urls.splice(i, 1) return true; } }) }); }
<template> <div> <label style="float: left;"> 搜索关键字: <input type="text" class="form-control" v-model="keyword"> </label> <el-table :data="search(keyword)" size="small" :stripe="true" :border="true" @select="select" @select-all="select"> <el-table-column type="selection"></el-table-column> <el-table-column type="index"></el-table-column> <el-table-column label="网站名" prop="name" width="200"> <template slot-scope="slot"> <a href="slot.row.url" target="_blank">{{slot.row.name}}</a> </template> </el-table-column> <el-table-column label="网址" prop="url"></el-table-column> <el-table-column label="类型" prop="type" width="50"></el-table-column> <el-table-column label="国家" prop="country" width="50"></el-table-column> <el-table-column label="操作" width="50"> <template slot-scope="slot"> <el-button size="mini" type="text" icon="el-icon-delete" @click="del(slot.row)"></el-button> </template> </el-table-column> </el-table> <el-divider content-position="left">表格操作</el-divider> <el-button @click="batchDelete" type="danger" icon="el-icon-delete" size="small">批量删除</el-button> </div> </template> <script> export default { data() { return { keyword:'', selections: [], urls: [{ name: "新浪", url: "http://www.sina.com", type: "资讯", country: "中国" }, { name: "腾讯", url: "http://www.tencent.com", type: "聊天", country: "中国" }, { name: "谷歌", url: "http://www.google.com", type: "资讯", country: "美国" }, { name: "韬睿", url: "http://www.51i-star.com", type: "教育", country: "中国" } ] }; }, methods: { del(row){ this.$confirm("确定要删除吗?", "删除").then(action=>{ /* this.urls.some((item, i) =>{ if(item.name == row.name){ this.urls.splice(i, 1) return true; } }) */ var index = this.urls.findIndex(item =>{ if(item.name == row.name){ return true; } }) this.urls.splice(index, 1) }); }, select(selections, row) { this.selections = selections; }, batchDelete() { this.$confirm("确定要删除吗?", "删除") .then(action => { for (var i = this.urls.length - 1; i >= 0; i--) { for (var j = this.selections.length - 1; j >= 0; j--) { if (this.urls[i].name == this.selections[j].name) { this.urls.splice(i, 1); break; } } } }) .catch(error => { alert(error); this.$message('删除取消'); }); }, search(keyword){ /* var newList = [] this.urls.forEach(item =>{ if(item.name.indexOf(keyword) != -1){ newList.push(item) } }) return newList */ return this.urls.filter(item =>{ if(item.name.includes(keyword)){ return item } }) } } } </script> <style> </style>
Related free learning recommendations:javascript(video)
The above is the detailed content of How vue.js traverses an array. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



When using the Vue framework to develop front-end projects, we will deploy multiple environments when deploying. Often the interface domain names called by development, testing and online environments are different. How can we make the distinction? That is using environment variables and patterns.

The difference between componentization and modularization: Modularization is divided from the perspective of code logic; it facilitates code layered development and ensures that the functions of each functional module are consistent. Componentization is planning from the perspective of UI interface; componentization of the front end facilitates the reuse of UI components.

Ace is an embeddable code editor written in JavaScript. It matches the functionality and performance of native editors like Sublime, Vim, and TextMate. It can be easily embedded into any web page and JavaScript application. Ace is maintained as the main editor for the Cloud9 IDE and is the successor to the Mozilla Skywriter (Bespin) project.

Foreword: In the development of vue3, reactive provides a method to implement responsive data. This is a frequently used API in daily development. In this article, the author will explore its internal operating mechanism.

Vue.js has become a very popular framework in front-end development today. As Vue.js continues to evolve, unit testing is becoming more and more important. Today we’ll explore how to write unit tests in Vue.js 3 and provide some best practices and common problems and solutions.

In Vue.js, developers can use two different syntaxes to create user interfaces: JSX syntax and template syntax. Both syntaxes have their own advantages and disadvantages. Let’s discuss their differences, advantages and disadvantages.

How to handle exceptions in Vue3 dynamic components? The following article will talk about Vue3 dynamic component exception handling methods. I hope it will be helpful to everyone!

In the actual development project process, sometimes it is necessary to upload relatively large files, and then the upload will be relatively slow, so the background may require the front-end to upload file slices. It is very simple. For example, 1 A gigabyte file stream is cut into several small file streams, and then the interface is requested to deliver the small file streams respectively.
