摘要: 当需要验证的字段是数字类型的时候,需要使用 v-model.number 来绑定,否则验证的时候会当做字符串处理,结果就无法验证 <el-input v-model.number="tax.salary"></el-input> rules里面: salary: [{required: true, 阅读全文
posted @ 2020-12-23 21:49 Mr_sven 阅读(8352) 评论(0) 推荐(1) 编辑
摘要: 使用axios.get方式发送无参请求 <script> axios.get('http://localhost:8080/student/getAllStudent').then(res=>{ console.log(res.data); }).catch(err=>{ console.log(e 阅读全文
posted @ 2020-12-23 07:59 Mr_sven 阅读(1683) 评论(0) 推荐(0) 编辑