regexp

判断手机号码

  1. {
  2. /**
  3. * @description 判断手机号码
  4. * @param {String|Number} tel
  5. * @returns {Boolean}
  6. */
  7. function isPhoneNum(tel) {
  8. return /^1[34578]\d{9}$/.test(tel);
  9. }
  10. /**
  11. * @description 判断是否为手机号 (百度)
  12. * @param {String|Number} tel
  13. * @returns {Boolean}
  14. */
  15. function isPhoneNum(tel) {
  16. return /^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57])[0-9]{8}$/.test(tel)
  17. }
  18. /**
  19. * @description 手机号(严谨), 根据工信部2019年最新公布的手机号段
  20. * @param {String|Number} tel
  21. * @returns {Boolean}
  22. */
  23. function isPhoneNum(tel) {
  24. return /^1((3[\d])|(4[5,6,7,9])|(5[0-3,5-9])|(6[5-7])|(7[0-8])|(8[\d])|(9[1,8,9]))\d{8}$/.test(tel);
  25. }
  26. }

判断是否为邮箱地址

  1. {
  2. /**
  3. * @description 判断是否为邮箱地址
  4. * @param {String} email
  5. * @returns {Boolean}
  6. */
  7. function isEmail(email) {
  8. return /^([a-zA-Z0-9_\-])+@([a-zA-Z0-9_\-])+(\.[a-zA-Z0-9_\-])+$/.test(email);
  9. }
  10. }

验证身份证号码

  1. {
  2. /**
  3. * @description 验证身份证号码(身份证号码可能为15位或18位,15位为全数字,18位中前17位为数字,最后一位为数字或者X)
  4. * @param {String} idCard
  5. * @returns {Boolean}
  6. */
  7. function isCardNo(idCard) {
  8. return /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/.test(idCard);
  9. }
  10. /**
  11. * @description 验证身份证号码
  12. * @param {String} idCard
  13. * @returns {Boolean}
  14. */
  15. function isIDCard(idCard) {
  16. return /(^\d{8}(0\d|11|12)([0-2]\d|30|31)\d{3}$)|(^\d{6}(18|19|20)\d{2}(0\d|11|12)([0-2]\d|30|31)\d{3}(\d|X|x)$)/.test(idCard)
  17. }
  18. }

帐号是否合法

  1. {
  2. // 帐号是否合法(字母开头,允许5-16字节,允许字母数字下划线组合
  3. var regx = /^[a-zA-Z][a-zA-Z0-9_]{4,15}$/;
  4. }

去除首尾的’/‘

  1. {
  2. // 去除首尾的'/'
  3. var str = '/asdf//';
  4. str = str.replace(/^\/*|\/*$/g, '');
  5. }

去除空格 - trim()

  1. {
  2. String.prototype.trim = function () {
  3. return this.replace(/^\s+/, "").replace(/\s+$/, "");
  4. };
  5. }
  6. {
  7. // 正则实现trim()功能
  8. function myTrim(str) {
  9. let reg = /^\s+|\s+$/g;
  10. return str.replace(reg, "");
  11. }
  12. let str = " wcd ";
  13. console.log(myTrim(str)); // wcd
  14. }

日期

  1. {
  2. // 判断日期格式是否符合 '2017-05-11'的形式,简单判断,只判断格式
  3. var regx = /^\d{4}\-\d{1,2}\-\d{1,2}$/
  4. // 判断日期格式是否符合 '2017-05-11'的形式,严格判断(比较复杂)
  5. var regx = /^(?:(?!0000)[0-9]{4}-(?:(?:0[1-9]|1[0-2])-(?:0[1-9]|1[0-9]|2[0-8])|(?:0[13-9]|1[0-2])-(?:29|30)|(?:0[13578]|1[02])-31)|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)-02-29)$/;
  6. }

账号相关(用户名-密码)

  1. {
  2. // 用户名正则
  3. var regx1 = /^[a-zA-Z0-9_-]{4,16}$/;
  4. // 密码强度正则,最少6位,包括至少1个大写字母,1个小写字母,1个数字,1个特殊字符
  5. var regx2 = /^.*(?=.{6,})(?=.*\d)(?=.*[A-Z])(?=.*[a-z])(?=.*[!@#$%^&*? ]).*$/;
  6. }

车牌号正则

  1. {
  2. // 车牌号正则
  3. var regx = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$/;
  4. }
  5. {
  6. // 新能源车牌号
  7. var regx1 = /[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领 A-Z]{1}[A-HJ-NP-Z]{1}(([0-9]{5}[DF])|([DF][A-HJ-NP-Z0-9][0-9]{4}))$/;
  8. // 非新能源车牌号
  9. var regx2 = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领 A-Z]{1}[A-HJ-NP-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$/;
  10. // 车牌号(新能源+非新能源)
  11. var regx3 = /^([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领 A-Z]{1}[A-HJ-NP-Z]{1}(([0-9]{5}[DF])|([DF]([A-HJ-NP-Z0-9])[0-9]{4})))|([京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领 A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9 挂学警港澳]{1})$/;
  12. }

过滤HTML标签

  1. {
  2. // 过滤HTML标签
  3. var str = "<p>dasdsa</p>nice <br> test</br>"
  4. var regx = /<[^<>]+>/g;
  5. str = str.replace(regx, '');
  6. }

URL

  1. {
  2. // URL正则
  3. var regx = /^((https?|ftp|file):\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/;
  4. // 合法uri
  5. function validateURL(textval) {
  6. const urlregex = /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/
  7. return urlregex.test(textval)
  8. }
  9. // 操作URL查询参数
  10. const params = new URLSearchParams(location.search.replace(/\?/ig, "")); // location.search = "?name=yajun&sex=female"
  11. params.has("yajun"); // true
  12. params.get("sex"); // "female"
  13. }

生成随机HEX色值

  1. {
  2. // 生成随机HEX色值
  3. const RandomColor = () => "#" + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0");
  4. const color = RandomColor();
  5. // color => "#f03665"
  6. }

生成星级评分

  1. {
  2. // 生成星级评分
  3. const StartScore = rate => "★★★★★☆☆☆☆☆".slice(5 - rate, 10 - rate);
  4. const start = StartScore(3);
  5. // start => "★★★"
  6. }

千位分隔符

  1. {
  2. /**
  3. * @description 千位分隔符(格式化金钱)
  4. * @param {String|Number} num
  5. * @returns {string}
  6. */
  7. function thousandNum(num) {
  8. var regx = /\d{1,3}(?=(\d{3})+$)/g;
  9. return (num + '').replace(regx, '$&,') // $&表示与regx相匹配的字符串
  10. }
  11. /**
  12. * @description 千位分隔符(格式化金钱)
  13. * @param {String|Number} num
  14. * @returns {string}
  15. */
  16. function thousandNum(num) {
  17. return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
  18. }
  19. // thousandNum(123456789) => "123,456,789"
  20. }

大小写字母

  1. {
  2. /* 小写字母*/
  3. function validateLowerCase(str) {
  4. const reg = /^[a-z]+$/
  5. return reg.test(str)
  6. }
  7. /* 大写字母*/
  8. function validateUpperCase(str) {
  9. const reg = /^[A-Z]+$/
  10. return reg.test(str)
  11. }
  12. /* 大小写字母*/
  13. function validatAlphabets(str) {
  14. const reg = /^[A-Za-z]+$/
  15. return reg.test(str)
  16. }
  17. }

判空

  1. {
  2. // 判断是否为空
  3. function validatenull(val) {
  4. if (typeof val === 'boolean') {
  5. return false
  6. }
  7. if (val instanceof Array) {
  8. if (val.length === 0) return true
  9. } else if (val instanceof Object) {
  10. if (JSON.stringify(val) === '{}') return true
  11. } else {
  12. if (val === 'null' || val == null || val === 'undefined' || val === undefined || val === '') return true
  13. return false
  14. }
  15. return false
  16. }
  17. }

下划线命名到驼峰命名

  1. const strToCamel = (str) => str.replace(/(^|_)(\w)/g, (m, $1, $2) => $2.toUpperCase());
  2. console.log(strToCamel("aa_bb_cc_d_e_f"));

other

localStorage(sessionStorage)

  1. const localStorage = window.localStorage;
  2. const sessionStorage = window.sessionStorage;
  3. // 设置localStorage存储数据
  4. export const setLocal = (name, content) => {
  5. if (!name) return;
  6. if (typeof content !== "string") {
  7. content = JSON.stringify(content);
  8. }
  9. localStorage.setItem(name, content);
  10. };
  11. // 获取localStorage存储数据
  12. export const getLocal = (name) => {
  13. if (!name) return;
  14. let value = localStorage.getItem(name);
  15. if (value !== null) {
  16. try {
  17. value = JSON.parse(value);
  18. } catch (error) {
  19. value = value;
  20. }
  21. }
  22. return value;
  23. };
  24. // 删除localStorage存储数据
  25. export const removeLocal = (name) => {
  26. if (!name) return;
  27. localStorage.removeItem(name);
  28. };
  29. // 设置sessionStorage存储数据
  30. export const setSession = (name, content) => {
  31. if (!name) return;
  32. if (typeof content !== "string") {
  33. content = JSON.stringify(content);
  34. }
  35. sessionStorage.setItem(name, content);
  36. };
  37. // 获取sessionStorage存储数据
  38. export const getSession = (name) => {
  39. if (!name) return;
  40. let value = sessionStorage.getItem(name);
  41. if (value !== null) {
  42. try {
  43. value = JSON.parse(value);
  44. } catch (error) {
  45. value = value;
  46. }
  47. }
  48. return value;
  49. };
  50. // 删除sessionStorage存储数据
  51. export const removeSession = (name) => {
  52. if (!name) return;
  53. sessionStorage.removeItem(name);
  54. };

解析 URL Params 为对象

  1. function parseParam(url) {
  2. const paramsStr = /.+\?(.+)$/.exec(url)[1];
  3. const paramsArr = paramsStr.split("&");
  4. let paramsObj = {};
  5. paramsArr.forEach((param) => {
  6. // 处理有 value 的参数
  7. if (/=/.test(param)) {
  8. // 分割 key 和 value
  9. let [key, val] = param.split("=");
  10. // 解码
  11. val = decodeURIComponent(val);
  12. // 判断是否转为数字
  13. val = /^\d+$/.test(val) ? parseFloat(val) : val;
  14. // 如果对象有 key,则添加⼀个值
  15. if (paramsObj.hasOwnProperty(key)) {
  16. paramsObj[key] = [].concat(paramsObj[key], val);
  17. } else {
  18. // 如果对象没有这个 key,创建 key 并设置值
  19. paramsObj[key] = val;
  20. }
  21. } else {
  22. // 处理没有 value 的参数
  23. paramsObj[param] = true;
  24. }
  25. });
  26. return paramsObj;
  27. }
  28. let url = "http://www.domain.com/?user=anonymous&id=123&id=456&city=%E5%8C%97%E4%BA%AC&enabled";
  29. parseParam(url);
  30. // {
  31. // city: "北京",
  32. // enabled: true,
  33. // id: [123, 456],
  34. // user: "anonymous",
  35. // }

获取URL的中参数

  1. /**
  2. * @method 获取URL的中参数
  3. * @param {*} strUrl
  4. */
  5. export const getQueryString = (strUrl) => {
  6. let reg = new RegExp("(^|&)" + strUrl + "=([^&]*)(&|$)", "i");
  7. let r = window.location.search.substr(1).match(reg); //获取url中"?"符后的字符串并正则匹配
  8. let context = "";
  9. if (r != null) context = r[2];
  10. reg = null;
  11. r = null;
  12. return context == null || context == "" || context == "undefined"
  13. ? ""
  14. : context;
  15. };

时间格式化

  1. /**
  2. * @method 时间格式化
  3. * @param {string} time
  4. * @param {string} format yyyy/mm/dd hh:ii:ss(2019/07/24 09:45:43) yy/m/d hh:ii:ss(19/07/24 09:45:43) yyyy/mm/dd w(2019/07/24 星期三) mm/dd/yyyy(07/24/2019)
  5. * @returns
  6. */
  7. export const formatTime = (time, format = "yyyy-mm-dd") => {
  8. const d = time ? new Date(time) : new Date();
  9. const t = (i) => {
  10. return (i < 10 ? "0" : "") + i;
  11. };
  12. const year = d.getFullYear();
  13. const month = d.getMonth() + 1;
  14. const day = d.getDate();
  15. const hour = d.getHours();
  16. const minutes = d.getMinutes();
  17. const seconds = d.getSeconds();
  18. const weekday = d.getDay();
  19. return format.replace(
  20. /(yy){1,2}|m{1,2}|d{1,2}|h{1,2}|i{1,2}|s{1,2}|w{1,2}/gi,
  21. function (r) {
  22. switch (r.toUpperCase()) {
  23. case "YY":
  24. return ("" + year).substr(2);
  25. case "YYYY":
  26. return year;
  27. case "M":
  28. return month;
  29. case "MM":
  30. return t(month);
  31. case "D":
  32. return day;
  33. case "DD":
  34. return t(day);
  35. case "H":
  36. return hour;
  37. case "HH":
  38. return t(hour);
  39. case "I":
  40. return minutes;
  41. case "II":
  42. return t(minutes);
  43. case "S":
  44. return seconds;
  45. case "SS":
  46. return t(seconds);
  47. case "W":
  48. return `星期${["日", "一", "二", "三", "四", "五", "六"][weekday]}`;
  49. case "WW":
  50. return [
  51. "Sunday",
  52. "Monday",
  53. "TuesDay",
  54. "Wednesday",
  55. "Thursday",
  56. "Friday",
  57. "Saturday",
  58. ][weekday];
  59. }
  60. }
  61. );
  62. };

防抖

防抖:防止抖动,单位时间内事件触发会被重置,避免事件被误伤触发多次。 代码实现重在清零 clearTimeout。 防抖可以比作等电梯,只要有一个人进来,就需要再等一会儿。 业务场景有避免登录按钮多次点击的重复提交。

  1. /**
  2. * @description 函数防抖
  3. * @param {Function} method 延时调用函数
  4. * @param {Number} wait 延迟时长
  5. * @param {Boolean} immediate 立即执行选项
  6. */
  7. export const Ddebounce = (method, wait, immediate) => {
  8. if (typeof method != "function") {
  9. throw new TypeError("Expected a function");
  10. }
  11. let timeout;
  12. // Ddebounce函数为返回值
  13. // 使用Async/Await处理异步,如果函数异步执行,等待setTimeout执行完,拿到原函数返回值后将其返回
  14. // args为返回函数调用时传入的参数,传给method
  15. let Ddebounce = function (...args) {
  16. return new Promise((resolve) => {
  17. // 用于记录原函数执行结果
  18. let result;
  19. // 将method执行时this的指向设为 debounce 返回的函数被调用时的this指向
  20. let context = this;
  21. // 如果存在定时器则将其清除
  22. if (timeout) {
  23. clearTimeout(timeout);
  24. }
  25. // 立即执行需要两个条件,一是immediate为true,二是timeout未被赋值或被置为null
  26. if (immediate) {
  27. // 如果定时器不存在,则立即执行,并设置一个定时器,wait毫秒后将定时器置为null
  28. // 这样确保立即执行后wait毫秒内不会被再次触发
  29. let callNow = !timeout;
  30. timeout = setTimeout(() => {
  31. timeout = null;
  32. }, wait);
  33. // 如果满足上述两个条件,则立即执行并记录其执行结果
  34. if (callNow) {
  35. result = method.apply(context, args);
  36. resolve(result);
  37. }
  38. } else {
  39. // 如果immediate为false,则等待函数执行并记录其执行结果
  40. // 并将Promise状态置为fullfilled,以使函数继续执行
  41. timeout = setTimeout(() => {
  42. // args是一个数组,所以使用fn.apply
  43. // 也可写作method.call(context, ...args)
  44. result = method.apply(context, args);
  45. resolve(result);
  46. }, wait);
  47. }
  48. });
  49. };
  50. // 在返回的 Ddebounce 函数上添加取消方法
  51. Ddebounce.cancel = function () {
  52. clearTimeout(timeout);
  53. timeout = null;
  54. };
  55. return Ddebounce;
  56. };

节流

节流:控制流量,单位时间内事件只能触发一次,与服务器端的限流 (Rate Limit) 类似。 代码实现重在开锁关锁 timer=timeout; timer=null。 节流可以比作过红绿灯,每等一个红灯时间就可以过一批。

  1. /**
  2. * @method 节流
  3. * @param {*} func
  4. * @param {*} delay
  5. */
  6. export const Dthrottle = (func, delay) => {
  7. let timer = null;
  8. return function () {
  9. let context = this;
  10. let args = arguments;
  11. if (!timer) {
  12. timer = setTimeout(function () {
  13. func.apply(context, args);
  14. timer = null;
  15. }, delay);
  16. }
  17. };
  18. };

数组扁平化

  1. /**
  2. * @method 数组扁平化
  3. * @param {*} arry
  4. */
  5. export const deepFlatten = (arr) => {
  6. return arr.toString().split(",").map((item) => +item);
  7. // or
  8. // return [].concat(...arr.map(item => (Array.isArray(item) ? deepFlatten(item) : item)));
  9. };

判断类型

  1. /**
  2. * @method 判断类型
  3. * @param {*} obj
  4. * @returns
  5. */
  6. export const toType = (obj) => {
  7. return {}.toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase();
  8. };

html 转义

  1. export const escapeHtml = (str) => {
  2. if (!str) return;
  3. str = str.replace(/&/g, "&amp;");
  4. str = str.replace(/</g, "&lt;");
  5. str = str.replace(/>/g, "&gt;");
  6. str = str.replace(/“/g, "&quto;");
  7. str = str.replace(/'/g, "&#39;");
  8. return str;
  9. };

等待一定时间后执行

  1. const wait = async milliseconds => new Promise(resolve => setTimeout(resolve, milliseconds));

判断对象是否为空

  1. const isEmpty = obj => Reflect.ownKeys(obj).length === 0 && obj.constructor === Object

检查函数是否是promise

  1. // 可先看vue源码实现(不严谨,但是够用)
  2. function isDef(v) {
  3. return v !== undefined && v !== null;
  4. }
  5. function isPromise(fn) {
  6. return isDef(fn) && typeof fn.then === 'function' && typeof fn.catch === 'function';
  7. }
  8. console.log(isPromise(new Promise())); // true
  9. // graphql-js 的实现方式
  10. function isPromise_graphql(fn) {
  11. return Boolean(fn && typeof fn.then === 'function');
  12. }
  13. // 利用 instanceof
  14. function isPromise_instanceof(fn) {
  15. return fn instanceof Promise;
  16. }
  17. // 利用 prototype
  18. function isPromise_prototype(fn) {
  19. return fn && Object.prototype.toString.call(fn) === "[object Promise]";
  20. }

检查函数是否是一个生成器

  1. const test = function*() {
  2. yield undefined;
  3. };
  4. console.log(x.constructor.name === 'GeneratorFunction'); // true
  5. // 或者
  6. const GeneratorFunction = function*() {
  7. yield undefined;
  8. }.constructor;
  9. console.log(test instanceof GeneratorFunction); // true
  10. // 需要注意
  11. foo = test.bind(bar);
  12. console.log(foo instanceof GeneratorFunction); // false