时间:2021-05-26
废话不多说了,直接上代码吧!
<dd class="clearfix" v-for="(item,index) in tableDataList" :class="index%2 != 0 ? 'dd-bg' : ''"> <div class="indexItem indexItem3 tal" title=""><span>{{item.status}}{{countTotal}}</span></div></dd><script type="text/ecmascript-6">import Vue from 'vue'import axios from 'axios'export default { data(){ return{ tableDataList:[],//定义列表数据信息 } }, mounted(){ //获取列表数据信息 axios.get('url',{ withCredentials: true }) .then((res) => {// console.log(res); let tableData = res.data.data; this.tableDataList = tableData.table_list; }) .catch((error) => { console.log(error) }) }, computed:{ //将状态数字转换为对应的文字解释 countTotal() { for (let i = 0; i < this.tableDataList.length; i++) { if (this.tableDataList[i].status === 0) { this.tableDataList[i].status = '文字说明0' } else if (this.tableDataList[i].status === 1) { this.tableDataList[i].status = '文字说明1' } else if (this.tableDataList[i].status === 2) { this.tableDataList[i].status = '文字说明2' } else if (this.tableDataList[i].status === 3) { this.tableDataList[i].status = '文字说明3' } else if (this.tableDataList[i].status === 4) { this.tableDataList[i].status = '文字说明4' } else if (this.tableDataList[i].status === 5) { this.tableDataList[i].status = '文字说明5' } Vue.set(this.tableDataList,i,this.tableDataList[i]) } } }}</script>注意:Vue.set(this.tableDataList,i,this.tableDataList[i]) 这段代码必须写,否则数据不会更新
以上这篇vue改变循环遍历后的数据实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Vue实现响应式后DOM的变化data对象中数据改变是如何追踪的?vue将遍历data对象中所有的属性,并通过Object.defineProperty
本文实例为大家分享了Vue点击显示不同图片的具体代码,供大家参考,具体内容如使用Vue中的以下知识点来显示效果①:v-for:循环遍历数据②:v-bind:cl
1、v-for循环普通数组①创建vue对象②循环数据结果:2、v-for循环对象数组①创建vue实例对象②循环对象数组结果:3、v-for循环对象①创建vue对
由于for循环可以通过控制循环变量的初始值和循环结束条件来改变遍历的区间,所以在排序或者遍历的时候,利用for循环就比较简单,以下是本人学习后得到的一些总结案例
vue是一套当下非常受欢迎的构建用户界面的渐进式框架。那如何使用vue进行数据循环呢?下面的案例将使用v-for循环进行数据的遍历。1、打开html开发工具,新