小程序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+uView实现多图上传功能。

uni-app项目使用uView UI的步骤

记录uni-app开发微信小程序踩过得坑,包括iconfont不显示v-if插槽上不生效pdf在线预览等

uni-app图片剪切上传;uview2用使用uview1中的图片剪切上传组件,把原有代码抽取出来

基于Uni-APP多端「h5+小程序+App」高仿抖音小视频|直播|聊天实例