小程序uni-app中uview中select选择器第二次无法选中设置的默认值
Posted 流年少年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序uni-app中uview中select选择器第二次无法选中设置的默认值相关的知识,希望对你有一定的参考价值。
<u-select v-model="subjectFlag"
title="选择科目"
@confirm="okSubjecthander"
label-name="subjectName"
:default-value="subjectAarr"
value-name="subjectId"
:list="subjectArrList"
></u-select>
subjectAarr:[0], //由于我是单选,所以默认选中第一个
subjectArrList:[],
// 科目选择器,点击确认,
//在点击选择确认的时候默认选中上一次你点击的值的下标,这样就可以解决了
okSubjecthander(arr){
let index=0;
for(let i=0;i<this.subjectArrList.length;i++){
if(this.subjectArrList[i].subjectId==arr[0].value){
index=i;
break
}
}
this.subjectAarr[0]=index;
},
以上是关于小程序uni-app中uview中select选择器第二次无法选中设置的默认值的主要内容,如果未能解决你的问题,请参考以下文章
uni-app——运行微信微信小程序整合uView运行错误[Cannot read property ‘mark‘ of undefined]解决方案
记录uni-app开发微信小程序踩过得坑,包括iconfont不显示v-if插槽上不生效pdf在线预览等