当前位置:   article > 正文

使用Vuetify构建登录系统的UI并实现表单验证【实验四】_vuetify 表单校验

vuetify 表单校验

一、实验名称

使用Vuetify构建登录系统的UI并实现表单验证。

二、参考资料

《Vue 3官方网站:https://cn.vuejs.org》、《Vuetify界面设计框架:Release notes — Vuetify

三、实验目的

1. 练习使用Vuetify组件设计界面。

2. 练习对表单数据进行验证。

四、实验内容

1. VS Code打开实验三创建的myweb项目文件夹。

2. VS Code中按下 【Ctrl+Shift+` 】组合键打开终端窗口,在窗口中输入:

pnpm add vuetify@^3.1.6 mosha-vue-toastify

该命令会在当前项目中安装Vuetify3.1.6版本和一个显示短消息的插件Toastify

Vuetify 是建立在Vue.js之上的完备的界面框架,Vuetify的最新版本是3版本,该版本支持Vue 3Vuetify采用 Material设计规范,组件丰富,界面精美,易于使用。

Vuetify支持4种流行的图标字体,包括Google官方出品的图标库Material Icons,参见:Icon Fonts — Vuetify

Material Icon图标库中的图标样式可以通过这个网站查看:Material Icons - Material UI,使用Material Icon图标库需要使用如下的命令进行安装:

pnpm add material-design-icons-iconfont -D

3. 打开项目的TS入口文件main.ts,修改该文件,添加对Vuetify的全局引用和对ToastifyMaterial Icon的样式文件的全局引用,修改后的main.ts的代码如下所示:

  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import './assets/main.css'
  4. import 'mosha-vue-toastify/dist/style.css'
  5. import 'material-design-icons-iconfont/dist/material-design-icons.css'
  6. // 全局引入Vuetify
  7. import 'vuetify/styles'
  8. import { createVuetify } from 'vuetify'
  9. import * as components from 'vuetify/components'
  10. import * as directives from 'vuetify/directives'
  11. import { aliases, md } from 'vuetify/iconsets/md'
  12. const vuetify = createVuetify({
  13.   components,
  14.   directives,
  15.   icons: {
  16.     defaultSet: 'md',
  17.     aliases,
  18.     sets: {
  19.       md,
  20.     }
  21.   },
  22. })
  23. createApp(App).use(vuetify).mount('#app')

4. 删除asserts目录下main.css文件中的样式,把下列样式复制到main.css中:

  1. body {
  2.   position: absolute;
  3.   height: 100%;
  4.   width: 100%;
  5.   display: flex;
  6.   justify-content: center;
  7.   align-items: center;
  8.   background-color: #f0f0f0;
  9. }

5. 删除UserLogin.vuestyle元素中的样式定义,使用Vue的样式类(参见:Spacing — Vuetify)设置界面的样式。

6. 修改UserLogin.vue,使用Vuetifyv-card组件(参见:Card component — Vuetify)替换原来的div元素。

7. 修改表单定义,使用Vuetifyv-form组件(参见:Form component — Vuetify)替换原来的form元素,使用v-text-field组件替换原来的input元素,使用v-btn组件(参见:Button component — Vuetify)替换原来的button元素。修改后的UserLogin.vue的代码如下所示:

  1. <script lang="ts" setup>
  2. import {onMounted, ref, getCurrentInstance} from 'vue';
  3. import {login} from '@/api/user'
  4. import {createToast} from "mosha-vue-toastify";
  5.  
  6. const username = ref('')
  7. const password = ref('')
  8. const handleLogin = async () => {
  9.   if (username.value == '' || password.value == '') {
  10.     createToast('用户名或密码不能为空!', {position'top-center'showIcontrue})
  11.   } else {
  12.     try {
  13.       const res = await login({username: username.valuepassword: password.value})
  14.       createToast(res.data.msg, {position'top-center'showIcontrue})
  15.     } catch (e) {
  16.       alert(e)
  17.     }
  18.   }
  19. }
  20. let instance: any
  21. onMounted(() => {
  22.   instance = getCurrentInstance()
  23. })
  24. const reset = () => {
  25.   instance.ctx.$refs.form.reset()
  26. }
  27. </script>
  28. <template>
  29.   <v-container class="h-100  d-flex align-center justify-center">
  30.     <v-card width="500">
  31.       <v-card-title>用户登录</v-card-title>
  32.       <v-card-text class="pa-8">
  33.         <v-form ref="form">
  34.           <v-text-field variant="underlined" v-model="username" required
  35.                         :counter="20"
  36.                         label="账号"
  37.                         prepend-icon="person"
  38.           ></v-text-field>
  39.           <v-text-field variant="underlined" v-model="password" required
  40.                         :counter="20"
  41.                         label="密码"
  42.                         prepend-icon="lock"
  43.                         type="password"
  44.           ></v-text-field>
  45.           <v-row class="mt-5">
  46.             <v-btn class="ml-5" @click="handleLogin">提交</v-btn>
  47.             <v-btn class="ml-5" @click="reset">复位</v-btn>
  48.           </v-row>
  49.         </v-form>
  50.       </v-card-text>
  51.     </v-card>
  52.   </v-container>
  53. </template>
  54. <style scoped>
  55. </style>

运行项目,登录成功以后应该显示如下界面:

8. 前面我们只是实现了用户名和密码不能为空的简单表单验证,接下来我们要使用Vuetify的表单验证机制对表单数据进行更加完善的验证。

src下新建hooks目录,在该目录下新建useValidRule.ts文件,在该文件中定义可以在多个组件中复用的Vuetify的表单验证规则(参见:Form component — Vuetify),内容如下:

  1. import {ref} from "vue"
  2. export const usernameRules = ref([
  3.     (v: string) => !!v || '必须输入账号!',
  4.     (v: string ) => (v && v.length <= 20 && v.length >= 3) || '账号的长度为3到20个字符!',
  5. ])
  6. export const passwordRules = ref([
  7.     (v: string) => !!v || '必须输入密码!',
  8.     (v: string ) => (v && v.length <= 20 && v.length >= 8) || '密码的长度为8到20个字符!',
  9. ])

修改mockindex.ts中定义的密码,使其长度符合验证规则的要求。

9. 修改UserLogin.vue中的账号和密码字段,通过rules属性使用自定义的验证规则对用户名和密码进行验证,修改后的表单如下列代码所示:

  1. <v-form ref="form">
  2.           <v-text-field variant="underlined" v-model="username" required
  3.                         :counter="20"
  4.                         label="账号"
  5.                         prepend-icon="person"
  6.                         :rules="usernameRules"
  7.           ></v-text-field>
  8.  
  9.           <v-text-field variant="underlined" v-model="password" required
  10.                         :counter="20"
  11.                         label="密码"
  12.                         prepend-icon="lock"
  13.                         type="password"
  14.                         :rules="passwordRules"
  15.           ></v-text-field>
  16.           <v-row class="mt-5">
  17.             <v-btn class="ml-5" @click="handleLogin">提交</v-btn>
  18.             <v-btn class="ml-5" @click="reset">复位</v-btn>
  19.           </v-row>
  20. </v-form>

10. 修改handleLogin函数,增加验证判断,修改后的代码如下所示:

  1. const handleLogin = async () => {
  2.   const {valid} = await instance.ctx.$refs.form.validate()
  3.   if (valid) {
  4.     if (username.value == '' || password.value == '') {
  5.       createToast('用户名或密码不能为空!', {position: 'top-center', showIcon: true})
  6.     } else {
  7.       try {
  8.         const res = await login({username: username.value, password: password.value})
  9.         createToast(res.data.msg, {position: 'top-center', showIcon: true})
  10.       } catch (e) {
  11.         alert(e)
  12.       }
  13.     }
  14.   }
  15. }

11. 测试用户登录,当用户名和密码不符合验证规则时会显示验证错误信息并无法提交表单数据,如下图所示:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/306404
推荐阅读
相关标签
  

闽ICP备14008679号