码迷,mamicode.com
首页 > 其他好文 > 详细

如何取到el-select中的label

时间:2019-12-12 16:39:48      阅读:571      评论:0      收藏:0      [点我收藏+]

标签:传递   tin   ade   get   方便   rabl   索引   options   时间   

在el-select中我们一般都是取到value的值,但是有时候我们需要value和label都需要。那怎么方便的取到呢

在网上经常有ref="cascader"这个方法,但是经过本人多次验证有时候这种方法不太稳定。所以还有其他两种方法下面说一下:

一般el-select的写法是这样的

        <el-select v-model="searthareathree" size="small" filterable placeholder="请选择区域">
              <el-option
                ref="cascader"
                v-for="item in optionsZonethree"
                :key="item.district_id"
                :label="item.district_name"
                :value="item.district_id">
              </el-option>
            </el-select>

我们给一种方法可以通过for循环通过与取中的model对比,取到对应的label;如下所示:

 pushfranchisee(){
      for(let a=0;a<this.optionsZonethree.length;a++){
        if(this.searthareathree==this.optionsZonethree[a].district_id){
          this.labelname=this.optionsZonethree[a].district_name
        }
      }
    }

这样this.labelname就是要取到的label的值了,但是这种方法在数据少的时候还好,但是但是数据多的时候可能加载时间会长一点;

所以我们还可以用一种新方法find来解决

let selectName=this.optionsZonethree.find(val=>val.district_id==this.searthareathree).district_name
   console.log(selectName)

这样就可以直接打印出来label的值了

下面说一下find方法

 

find()方法返回数组中符合的第一个值,效果和swith类似,但是简单很多,

用法:

array.find(function(currentValue, index, arr),thisValue)
参数:

currentValue 必需。当前元素
index 可选。当前元素的索引值
arr 可选。当前元素所属的数组对象

thisValue 可选。 传递给函数的值一般用 "this" 值。
如果这个参数为空, "undefined" 会传递给 "this" 值

方法返回值:返回符合测试条件的第一个数组元素值,如果没有符合条件的则返回 undefined。
EG:
var ages = [4, 12, 16, 20];
function checkAdult(age) {
  return age >= document.getElementById("ageToCheck").value;
}
function myFunction() {
  document.getElementById("demo").innerHTML = ages.find(checkAdult);
}

就是这些了,希望对你有帮助

如何取到el-select中的label

标签:传递   tin   ade   get   方便   rabl   索引   options   时间   

原文地址:https://www.cnblogs.com/wzfwaf/p/12029939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!