Javascript 工具
|
前端
•
|
点赞 1
|
预览 831
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.
NodeJs文件上传到阿里oss
|
后端
•
前端
•
|
点赞 2
|
预览 765
一、脚本部署安装依赖 : npm i ali-oss新建该脚本(oss.js)放在你hexo项目的根目录下,和public同级该脚本有四个参数需要自己的配置(在你的oss控制台查):access ke
Javascript常用API
|
工具
•
前端
•
|
点赞 1
|
预览 595
JS 数组常用API方法和遍历方法总结ES5数组 (array)map:遍历数组,返回回调返回值组成的新数组,不改变原数组,不会对空数组进行检测Array.map(function(item, index, array) {return xxx})forEach:无法break,可以用try/cat