08 2022 档案
摘要:1、cd : 改变目录。 2、cd . . 回退到上一个目录,直接cd进入默认目录 3、pwd : 显示当前所在的目录路径。 4、ls(ll): 都是列出当前目录中的所有文件,只不过ll(两个ll)列出的内容更为详细。 5、touch : 新建一个文件 如 touch index.js 就会在当前目
阅读全文
摘要:// 写法一 let [cache, cache2] = await Promise.all([cachePromise, cachePromise2]); // 写法二 let Promise= cachePromise(); let Promise2= cachePromise2(); let
阅读全文
摘要:Warning: React does not recognize the `xxXxx` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it
阅读全文