05 2020 档案
git中常用的命令
摘要:$ git init $ git add .$git commit -m 'xxx'$ git remote add 别名 远程仓库地址$ git push -u 远程仓库地址别名 本地分支:远程分支( git push -u origin master)$ git checkout -b dev
阅读全文
mockjs 中常用的函数
摘要:一些比较常用的函数: 'Boolean': '@boolean', // 随机生成布尔类型 'Natural': '@natural(1, 100)', // 随机生成1到100之间自然数 'Integer': '@integer(1, 100)', // 生成1到100之间的整数 'Float':
阅读全文