這篇文章帶給大家的內容是關於小程式的開發:表單的驗證(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
<form bindsubmit='formSubmit'><view class="subInfo"> <view class="subInfoItem clearfix"> <text class="tag need">校区名称</text> <input name='name' value='' placeholder='请输入校区名称' placeholder-class='placeholder'></input> </view> <view class="subInfoItem clearfix"> <text class="tag">联系电话</text> <input name='contactphone' value='' placeholder='请输入联系电话' placeholder-class='placeholder'></input> </view></view><view class='btnWrap'> <button class='saveBtn' form-type='submit'>保存</button></view></form>
import WxValidate from '../utils/classes/WxValidate.js'var validate; Page({ // 初始化表单校验 initValidate(){ // 创建实例对象 this.validate = new WxValidate({ name: { required: true, maxlength: 20 }, contactphone: { tel: true } }, { name: { required: '请输入校区名称!', maxlength: '名称不得超过20字!' }, contactphone: { tel: '电话格式不正确!' } }) }, data: { }, onLoad: function (options) { this.initValidate() }, formSubmit(e){ // 校验表单 if (!this.validate.checkForm(e.detail.value)){ const error = this.validate.errorList[0]; wx.showToast({ title: `${error.msg} `, icon: 'none' }) return false } // 保存操作... } })
註:
WxValidate - 表單驗證
外掛程式介紹
該外掛程式是參考jQuery Validate 封裝的,為小程式表單提供了一套常用的驗證規則,包括手機號碼、電子郵件驗證等等,同時提供了新增自訂校驗方法,讓表單驗證變得更簡單。
參數說明
參數 | 類型 | ##描述|
---|---|---|
object
| 驗證欄位的規則||
object
| 驗證欄位的提示訊息
規則 | 描述 | |
---|---|---|
required: true | 這是必填欄位。 ||
email: true
| #請輸入有效的電子郵件地址。 ||
tel: true
| #請輸入11位元的手機號碼。 ||
url: true
| #請輸入有效的網址。 ||
date: true
| 請輸入有效的日期。 ||
dateISO: true
| 請輸入有效的日期(ISO),例如:2009-06-23 ,1998/01/22。 ||
number: true
| 請輸入有效的數字。 ||
digits: true
| 只能輸入數字。 ||
idcard: true
| 請輸入18位元的有效身分證。 ||
equalTo: 'field'
| 輸入值必須和 field 相同。 ||
contains: 'ABC'
| 輸入值必須包含 ABC。 ||
minlength: 5
| 最少要輸入 5 個字元。 ||
maxlength: 10
| 最多可以輸入 10 個字元。 ||
rangelength: [5, 10]
| 請輸入長度在 5 到 10 之間的字元。 ||
min: 5
| #請輸入不小於 5 的數值。 ||
max: 10
| #請輸入不大於 10 的數值。 ||
range: [5, 10]
| 請輸入範圍在 5 到 10 之間的數值。
傳回類型 | 描述 | |
---|---|---|
#boolean
| 驗證所有欄位的規則,傳回驗證是否通過。 ||
boolean
| #傳回驗證是否通過。 ||
number
| #傳回錯誤訊息的數量。 ||
array
| 傳回所有錯誤訊息。 ||
#boolean
| 新增自訂驗證方法。
// 验证字段的规则const rules = { email: { required: true, email: true, }, tel: { required: true, tel: true, }, idcard: { required: true, idcard: true, }, }// 验证字段的提示信息,若不传则调用默认的信息const messages = { email: { required: '请输入邮箱', email: '请输入正确的邮箱', }, tel: { required: '请输入手机号', tel: '请输入正确的手机号', }, idcard: { required: '请输入身份证号码', idcard: '请输入正确的身份证号码', }, } // 创建实例对象 this.WxValidate = new WxValidate(rules, messages) // 自定义验证规则 this.WxValidate.addMethod('assistance', (value, param) => { return this.WxValidate.optional(value) || (value.length >= 1 && value.length <= 2) }, '请勾选1-2个敲码助手')// 如果有个表单字段的 assistance,则在 rules 中写assistance: { required: true, assistance: true, },// 调用验证方法,传入参数 e 是 form 表单组件中的数据submitForm(e) { const params = e.detail.value console.log(params) // 传入表单数据,调用验证方法 if (!this.WxValidate.checkForm(e)) { const error = this.WxValidate.errorList[0] return false } },
以上是小程式的開發:表單的驗證(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!