前言
因为一些原因,设计了一套快捷指令,中间涉及到一个sh脚本的运行,通过快捷指令运行时就会报错:operation not permitted
奇怪的是在快捷指令窗口下运行一切正常,但是从其他地方直接调用,例如通过Comma…
Introduction 介绍 I am Shafin Murani is a software development student and I am documenting every single day of my progress in learning rust. This is the first article of the series. Shafin Muranishi 是一名软件开发专业的学生,这是他在30天内记录学…
promise语法结构
创建一个promise对象
let p new Promise(function(resolve,reject){// 执行的操作...// 判断操作的结果并执行对应的回调函数if(){resolve()}else{reject()}
} 以上实例化了一个promise对象,其中包含了一个参数function,这个函数会在…