1、常用的git命令有哪些
- 第一次提交:
- 新建仓库,复制仓库地址
- 右击打开Git Bush Here
- git init 初始化仓库
- git clone 仓库地址
- git add . 暂存到本地
- git commit -m '版本描述' 提交版本
- git push 提交到仓库
- 修改提交:
- 在gitee新建分支
- 右击打开Git Bush Here
- git pull 拉取到本地
- git branch -a
- git checkout 新建的分支名称
- git checkout master
- git merge 新的分支名称
- git add .
- git commit -m '提交修改信息'
- git push
2、express传参的方式有哪些?
查询字符串 | /detial?lid=5 | req.query |
路由传参 | /detail/5 | req.pramas |
post传参 | 需要结合内置中间件 | req.body |
3、null和undefined的区别
在JavaScript中,null和undefined几乎先沟通
null和undefined基本同义。但二者依旧有区别,如下:
null表示没有对象 |
|
undefined表示缺少值 |
|