nodejs server开发思路
摘要:model层封装 class BaseModel { constructor(data, msg) { if (typeof data 'string') { this.msg = data data = null msg = null } if (data) { this.data = data
阅读全文
posted @
2020-06-02 06:06
苏荷酒吧
阅读(158)
推荐(0) 编辑
Git远程仓库
摘要:安装git https://git-scm.com/downloads 创建SSH Key ssh-keygen -t rsa -C "youremail@example.com" 在用户目录里面找到.ssh,里面有id_rsa和id_rsa.pub两个文件,这2个文件就是SHH Key的密钥对 g
阅读全文