摘要:
let arr = [ { id: 3, name: "部门3", pid: 1 }, { id: 1, name: "部门1", pid: 0 }, { id: 5, name: "部门5", pid: 4 }, { id: 2, name: "部门2", pid: 1 }, { id: 4, n 阅读全文
摘要:
Vuepress 博客 文档 阅读全文
摘要:
es6-数值判断方法 1. Number.isFinite(): 用来检查一个数值是否为有限的(finite),即不是Infinity。 2. Number.isNaN(): 用来检查一个值是否为NaN。 Number.isFinite(15); // true Number.isFinite(0. 阅读全文
摘要:
es6字符串方法 阅读全文
摘要:
废话不多说,上代码 rules: { fixedLineIdList: [ { required: true, validator: lineVerify, trigger: "change" } ] } }, // 线路重复校验 let lineVerify = (rule, value, cal 阅读全文
摘要:
在path中使用<参数名>表示所传参数,试图函数中的参数名必须和<>中参数名一致,参数可以是以下类型: str: 如果没有指定参数类型,默认是字符串类型。字符串参数可以匹配除/和空字符串外的其他字符串 int: 匹配0和正整数,试图函数的参数将得到一个整型值。 slug: 匹配由数字、字母、和_组成 阅读全文
摘要:
1.在本地新建个文件夹,进入文件夹,打开命令行,输入git clone xxxx进行远程仓库的克隆 2.多人开发代码上传共享及拉取 3.查看日志 4分支管理 * 查看分支git branch * 添加分支git branch xxxx为新分支名称 * 切换分支git checkout xxxxxx切 阅读全文