您好,登錄后才能下訂單哦!
這篇文章主要介紹了js前端表單數據處理和校驗怎么實現的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇js前端表單數據處理和校驗怎么實現文章都會有所收獲,下面我們一起來看看吧。
當表單在視圖所展示的數據并不是后端需要的數據,或者后端返回的數據不是前端所要展示的內容,這時就需要進行數據轉換,下面介紹幾種常見的場景
我假設有下面的一組form基礎數據
data(){ return { form:{ name: '商品名稱', id: '訂單編號', nickName: '商品別名', num: '商品數量', price:'價格', tag: '0' // 1 表示特價 0 表示無特價 }, } },
場景:當前端form中的數據存在冗余的字段,也就是說后端并不需要這些字段,我們可以通過過濾把不必要的字段篩選掉
const noRequired = ['tag', 'nickName']; //不需要的字段 const formData = Object.keys(this.form) .filter(each => !noRequired.includes(each)) .reduce((acc, key) => (acc[key] = this.form[key], acc), {});
場景:后端不需要表單數據那么多數據,只需要一部分時可以用
const formData= JSON.parse( JSON.stringify(this.form,["nickName","price"]) );
場景:當前表單有部分字段需要替換或覆蓋新的數據時可用
Object.assign(this.form, { tag: '商品1' }
當前表單字段需要映射為其他字段名稱時可用,如下對應的name的key值換為Name
單個字段映射情況
const formData = JSON.parse( JSON.stringify(this.form).replace( /name/g, 'Name') );
多字段映射情況
const mapObj = { name: "Name", nickName: "NickName", tag: "Tag" }; const formData = JSON.parse( JSON.stringify(this.form).replace( /name|nickName|tag/gi, matched => mapObj[matched]) );
ps:這種方式有bug,你知道是什么嗎?
當字段存在0,1等狀態數,需要轉換成為相對應的表示時可用,如下對應的tag字段,0對應特價,1對應無特價,進行映射轉換
const formData = JSON.parse(JSON.stringify(this.form,(key,value)=>{ if(key == 'tag'){ return ['特價','無特價'][value]; } return value; }));
數據合并,將表單數據字段合并,注意的是,如果字段相同,會覆蓋前面表單數據字段的數值
const query = { tenaId: '訂單編號', id:'查詢ID'} const formData = { ...this.form, query }
當表單數據填寫完成,需要進一步做表單提交傳送后端服務器,但是前端需要做數據的進一步確實是否符合規則,比如是否為必填項、是否為手機號碼格式
data() { return { schema:{ phone: { required:true }, } }; }, methods: { // 判斷輸入的值 validate(schema, values) { for(field in schema) { if(schema[field].required) { if(!values[field]) { return false; } } } return true; }, } console.log(this.validate(schema, {phone:'159195**34'}));
data() { return { phoneForm: { phoneNumber: '', verificationCode: '', tips:'' }, schema:{ phoneNumber: [{required: true, error: '手機不能為空'}, { regex: /^1[3|4|5|6|7|8][0-9]{9}$/, error: '手機格式不對', }], verificationCode: [{required: true, error: '驗證碼不能為空'}], } }; }, methods: { // 判斷輸入的值 validate(schema, values) { const valArr = schema; for (const field in schema) { if (Object.prototype.hasOwnProperty.call(schema, field)) { for (const key of schema[field]) { if (key.required) { if (!valArr[field]) { valArr.tips = key.error; return false; } } else if (key.regex) { if (!new RegExp(key.regex).test(valArr[field])) { valArr.tips = key.error; return false; } } } } } return true; }, } console.log(this.validate(this.schema, this.phoneForm);
Iview 的 Form 組件模塊主要由Form 和 FormItem組成
Form 主要是對form做一層封裝
FormItem 是一個包裹,主要用來包裝一些表單控件、提示消息、還有校驗規則等內容。
源碼鏈接
我們可以清晰看到,iview的 form 組件是通過async-validator工具庫來作為表單驗證的方法
async-validator的基本使用
import schema from 'async-validator'; var descriptor = { address: { type: "object", required: true, fields: { street: {type: "string", required: true}, city: {type: "string", required: true}, zip: {type: "string", required: true, len: 8, message: "invalid zip"} } }, name: {type: "string", required: true} } var validator = new schema(descriptor); validator.validate({ address: {} }, (errors, fields) => { // errors for address.street, address.city, address.zip });
而在iview的 form 組件中主要定義了validate函數中使用 field.validate就是調用async-validator的方法,用來管理form-item組件下的驗證
// ViewUI/src/components/form/form.vue methods:{ validate(callback) { return new Promise(resolve => { let valid = true; let count = 0; this.fields.forEach(field => { field.validate('', errors => { if (errors) { valid = false; } // 檢驗已完成的校驗的數量是否完全,則返回數據有效 if (++count === this.fields.length) { // all finish resolve(valid); if (typeof callback === 'function') { callback(valid); } } }); }); }); }, //針對單個的校驗 validateField(prop, cb) { const field = this.fields.filter(field => field.prop === prop)[0]; if (!field) {throw new Error('[iView warn]: must call validateField with valid prop string!'); } field.validate('', cb); } //表單規則重置 resetFields() { this.fields.forEach(field => { field.resetField(); }); }, }, created () { //通過FormItem定義的prop來收集需要校驗的字段, this.$on('on-form-item-add', (field) => { if (field) this.fields.push(field); return false; }); // 移除不需要的字段 this.$on('on-form-item-remove', (field) => { if (field.prop) this.fields.splice(this.fields.indexOf(field), 1); return false; }); }
Form.vue 中涉及到的 this.fields 里面的規則 是在其create生命周期時通過監聽‘on-form-item-add’push進來的,‘on-form-item-add’事件是由form-item 組件 觸發相對應的事件,并傳入相對應的實例就可以創建數據的關聯,以下是form-item的生命周期函數內容:
// ViewUI/src/components/form/form-item.vue mounted () { // 如果定義了需要驗證的字段 if (this.prop) { // 向父親Form組件添加field this.dispatch('iForm', 'on-form-item-add', this); Object.defineProperty(this, 'initialValue', { value: this.fieldValue }); this.setRules(); } }, beforeDestroy () { // 移除之前刪除form中的數據字段 this.dispatch('iForm', 'on-form-item-remove', this); } methods: { setRules() { //獲取所有規則 let rules = this.getRules(); if (rules.length&&this.required) { return; }else if (rules.length) { rules.every((rule) => { this.isRequired = rule.required; }); }else if (this.required){ this.isRequired = this.required; } this.$off('on-form-blur', this.onFieldBlur); this.$off('on-form-change', this.onFieldChange); this.$on('on-form-blur', this.onFieldBlur); this.$on('on-form-change', this.onFieldChange); }, getRules () { let formRules = this.form.rules; const selfRules = this.rules; formRules = formRules ? formRules[this.prop] : []; return [].concat(selfRules || formRules || []); }, validate(trigger, callback = function () {}) { let rules = this.getFilteredRule(trigger); if (!rules || rules.length === 0) { if (!this.required) { callback(); return true; }else { rules = [{required: true}]; } } // 設置AsyncValidator的參數 this.validateState = 'validating'; let descriptor = {}; descriptor[this.prop] = rules; const validator = new AsyncValidator(descriptor); let model = {}; model[this.prop] = this.fieldValue; validator.validate(model, { firstFields: true }, errors => { this.validateState = !errors ? 'success' : 'error'; this.validateMessage = errors ? errors[0].message : ''; callback(this.validateMessage); }); this.validateDisabled = false; }, }
通過不同正則規則,來約束不同類型的表單數據是否符合要求
是否為手機號碼: /^1[3|4|5|6|7|8][0-9]{9}$/
是否全為數字: /^[0-9]+$/
是否為郵箱:/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/
是否為身份證:/^(^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])((\d{4})|\d{3}[Xx])$)$/
是否為Url:/[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/
是否為IP: /((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}/
關于“js前端表單數據處理和校驗怎么實現”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“js前端表單數據處理和校驗怎么實現”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。