06 2021 档案
摘要:function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log(
阅读全文
摘要:场景1:拉取git项目里面的子仓库,直接执行下面这一句 git submodule update --init --recursive 场景2:从远程仓库克隆 git clone 场景3:创建并切换分支将代码提交到新建的分支 git checkout -b 新版本号 等价于 git branch 新
阅读全文
摘要:warn No apps connected. Sending "reload" to all React Native apps failed. Make sure your app is running in the simulator or on a phone connected via U
阅读全文