摘要: 后台控制层: public static final String HEAD_IMG_DIR = "D:/upload/"; // 本地存放图片路径 //图片上传 @RequestMapping("/upload") @ResponseBody public String upload(Multip 阅读全文
posted @ 2020-08-04 13:42 李加减 阅读(457) 评论(0) 推荐(0)
摘要: 1.邮箱export const isEmail = (s) => { return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)}2.手机号码export const isMobile = (s) => { return /^1[0-9]{10}$/.test(s)}3.电... 阅读全文
posted @ 2020-06-24 17:20 李加减 阅读(205) 评论(0) 推荐(0)