欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue forEach循环数组拿到自己想要的数据方法

程序员文章站 2022-04-29 18:53:55
如下所示:

如下所示:

 <el-checkbox v-for="(item) in jurisdictioncontent"
      :label="item.id"
      :key="item.id"
      class="checkboxmargin">
   <span>{{item.value}}{{item.checked}}</span>
   </el-checkbox>
 handlejurisdiction(index, row) {//获取权限
  this.selectedcheck=[];
  let me = this;
  this.jurisdiction = true;
  this.roleid = row.id;
  this.$http.get("/role/resources", {
   params: {roleid: this.roleid}
   },
   {
   emulatejson: true
   }).then((response) => {
   me.jurisdictioncontent = response.body;
   me.jurisdictioncontent.foreach(function (c) {
   if(c['checked']){
    me.selectedcheck.push(c.id);
   }
   })
   console.log(this.selectedcheck)
  })

vue 中标签里循环使用v-for,方法里面循环使用foreach。

以上这篇vue foreach循环数组拿到自己想要的数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。