解决uview下表单无法动态校验的问题

Posted csdn_zuirenxiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决uview下表单无法动态校验的问题相关的知识,希望对你有一定的参考价值。

声明:关于uniapp插件uview表单动态校验的一个解决方案

1.uview小程序必须用

// 如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则
 this.$refs.form1.setRules(this.rules)

 2.动态使用,v-for需要放在u-form下的view下面

 3.绑定的校验规则rules和表单model下面放置一个同名数组,确保u-form能找到

				form: 
					dynamicAry: [],
				,
				myrules: 
					dynamicAry: []
				,
				guigerules: 
					name: [
							required: true,
							message: '此为必填字段',
							// blur和change事件触发检验
							trigger: ['blur', 'change'],
						,
						
							min: 2,
							max: 12,
							message: '长度在2-12个字符之间'
						,
					],
					price: [
							required: true,
							message: '此为必填字段',
							// blur和change事件触发检验
							trigger: ['blur', 'change'],
						,
						
							validator: (rule, value, callback) => 
								return uni.$u.test.amount(value);
							,
							message: '金额格式不对'
						
					],
					weight: 
						type: 'number',
						required: true,
						message: '必须是数值',
						trigger: ['change']
					,

					kucun: 
						type: 'number',
						required: true,
						message: '必须是数值',
						trigger: ['change']
					
				,

4.u-form-item中的表单必须改为  :prop="`dynamicAry.$index.name`"

 

 5.贴一下代码

<u--form labelPosition="left" :model="form" :rules="myrules" ref="form2">
			<view class="block" v-for=" (item,index) in form.dynamicAry" :key="index">

				<view class="block__title">
					<text style="flex: 1;">规格信息<text v-if="index>0">index</text></text>
					<view style="width: 60px;" v-if="index>0">
						<u-button type="error" icon="trash" text="删除"></u-button>
					</view>

				</view>
				<view class="block__content">

					<u-form-item required label="规格名称" labelWidth="80" :prop="`dynamicAry.$index.name`" borderBottom>
						<u--input v-model="item.name" border="none" placeholder="请填写规格名称,如200g"></u--input>
					</u-form-item>
					<u-form-item required label="报价" labelWidth="80" :prop="`dynamicAry.$index.price`" borderBottom>
						<u--input type="digit" :v-model="item.price" border="none" placeholder="请输入商品报价">
						</u--input>
					</u-form-item>

					<u-form-item required label="重量" labelWidth="80" :prop="`dynamicAry.$index.weight`" borderBottom>
						<u--input type="number" :v-model="item.weight" disabledColor="#ffffff" placeholder="请输入商品重量"
							border="none"></u--input>
						<text @click="showGuigeWeightUnit(index)">item.weightUnit</text>
						<u-icon slot="right" name="arrow-right"></u-icon>
					</u-form-item>
					<u-form-item required label="库存" labelWidth="80" :prop="`dynamicAry.$index.kucun`" borderBottom>
						<u--input type="number" :v-model="item.kucun" border="none" placeholder="请输入商品库存">
						</u--input>
					</u-form-item>

				</view>

			</view>
		</u--form>

6.在校验规则中加入触发器 trigger: ['blur', 'change'],比如change,值变动后会触发校验

7.重要的一点,修改uview下的u-form(node_modules/uview-ui/components/u-form),因为改为数组后,const rule = this.formRules[child.prop];无法找到rule,如 child.prop=‘dynamicAry.0.name’,rule返回的是undefined,uniapp提供一个uni.$u.getProperty可以找到

 修改后的validateField函数:

			// 对部分表单字段进行校验
			async validateField(value, callback, event = null) 
				// $nextTick是必须的,否则model的变更,可能会延后于此方法的执行
				this.$nextTick(() => 
					
					// 校验错误信息,返回给回调方法,用于存放所有form-item的错误信息
					const errorsRes = [];
					// 如果为字符串,转为数组
					value = [].concat(value);
					// 历遍children所有子form-item
					this.children.map((child) => 
				 
						// 用于存放form-item的错误信息
						const childErrors = [];
						if (value.includes(child.prop)) 
							// 获取对应的属性,通过类似'a.b.c'的形式
							const propertyVal = uni.$u.getProperty(
								this.model,
								child.prop
							);
							
							// 属性链数组
							const propertyChain = child.prop.split(".");
							const propertyName =
								propertyChain[propertyChain.length - 1];
							//修改:将const改为let 
							let rule = this.formRules[child.prop];
							//修改:链式是无法通过上面的方式获取的,改为下面的方式
							if(!rule)
								rule=uni.$u.getProperty(
								this.formRules,
								child.prop
								);
							
							
							// 如果不存在对应的规则,直接返回,否则校验器会报错
							if (!rule) return;
							// rule规则可为数组形式,也可为对象形式,此处拼接成为数组
							const rules = [].concat(rule);

							// 对rules数组进行校验
							for (let i = 0; i < rules.length; i++) 
								const ruleItem = rules[i];
								
								// 将u-form-item的触发器转为数组形式
								const trigger = [].concat(ruleItem?.trigger);
								
								// 如果是有传入触发事件,但是此form-item却没有配置此触发器的话,不执行校验操作
								if (event && !trigger.includes(event)) continue;
								// 实例化校验对象,传入构造规则
								const validator = new Schema(
									[propertyName]: ruleItem,
								);
									
								validator.validate(
										[propertyName]: propertyVal,
									,
									(errors, fields) => 
									
										if (uni.$u.test.array(errors)) 
											errorsRes.push(...errors);
											childErrors.push(...errors);
										
										child.message =
											childErrors[0]?.message ?? null;
									
								);
							
						
					);
					// 执行回调函数
					typeof callback === "function" && callback(errorsRes);
				);
			,
			// 校验全部数据
			

7.动态添加

			addGuige() 
				this.form.dynamicAry.push(
					name: '',
					price: '',
					weight: '',
					weightUnit: '克',
					kucun: '',
				);
				this.myrules.dynamicAry.push(this.guigerules);
				// 如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则
				//微信小程序:动态设置才能生效,每次添加都需要,动态绑定无效
				this.$refs.form2.setRules(this.myrules)
			,

至此,解决完成,折腾了2个小时!!!

这是一个比较简单的解决方案,如果有其他解决方案,欢迎留言!

以上是关于解决uview下表单无法动态校验的问题的主要内容,如果未能解决你的问题,请参考以下文章

uniapp+uview微信小程序中有两个表单切换但都需要做校验

uniapp+uview微信小程序中有两个表单切换但都需要做校验

uview表单填了几条进度条

vue.js基础知识篇:表单校验详解

vue.js表单校验详解

如何动态添加带有引导表单元素的 div?