2021前端资料站链接

发表于 JS 分类,标签:
  next.js文档 https://docs.nestjs.cn/7/firststeps  2.   监测手部运动的JS库https://github.com/victordibia/handtrack.js 3. geoJSON地图https://datav.aliyun.com/tools/atlas/#&lat=30.37018632615852&lng=106.68898666525287&zoom=3.5  ...

常用正则[一]

发表于 JS 分类,标签:
const regExps = [  /**   * 用户名   * 字母,数字,下划线,减号   */  {    id: 'username',    name: '用户名',    reg: /^[a-zA-Z0-9_-]+$/,    msg: '该项数据只能包含字母,数字,下划线,减号'  },...