您好,登錄后才能下訂單哦!
這篇文章主要介紹“element可編輯表格驗證問題怎么解決”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“element可編輯表格驗證問題怎么解決”文章能幫助大家解決問題。
前提:表格里設置可編輯表單。
注意事項:
1.校驗需要觸發表單,而表格需要時數組。因此表單綁定的是一個對象,表格中綁定的是該對象中的數組。
2.prop動態綁定。
3.必要的情況下可以添加key的。(:key=‘scope.row.key’)
<el-form :model="ruleForm" ref="ruleForm" label-width="100px" class="demo-ruleForm"> <el-table :data="ruleForm.tableList" > <el-table-column prop="name" align="center"> <template slot-scope="scope"> <el-form-item label="活動名稱" :prop="'tableList.'+scope.$index+'.name'" :rules='rules.name'> <el-input v-model="scope.row.name"></el-input> </el-form-item> </template> </el-table-column> <el-table-column align="center"> <template> <el-button type="primary" @click="submitForm('ruleForm')">保存</el-button> <el-button @click="resetForm('ruleForm')">重置</el-button> </template> </el-table-column> </el-table> </el-form> export default { data() { return { ruleForm: { tableList: [], }, rules: { name: [ { required: true, message: '請輸入活動名稱', trigger: 'blur' }, { min: 3, max: 5, message: '長度在 3 到 5 個字符', trigger: 'blur' } ], } }; }, methods: { submitForm(formName) { this.$refs[formName].validate((valid) => { if (valid) { alert('submit!'); } else { console.log('error submit!!'); return false; } }); }, resetForm(formName) { this.$refs[formName].resetFields(); } } }
關于“element可編輯表格驗證問題怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。