例子:
-
验证手机号的正则表达式
-
验证用户名是否复合规范
-
复用度相当高的函数
-
等等
1.定义函数
一般会在 src 下 新建 untils 文件夹
untils =>index.js 使用正则表达式函数作为展示
export const phoneNumber = (val) => {
let reg = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/;
return reg.test(val)
}
注意点:
-
使用const定义函数
-
val即为传入的形参,函数运行完后需要再return导出结果
2.使用函数
在需要使用的页面中需要导入
import { phoneNumber } from "@/untils/index.js"标签:index,const,函数,val,phoneNumber,组件,工具,untils From: https://www.cnblogs.com/Dollom/p/16910005.html