许多Promise库,如Q或Bluebird,实现了一个名为.finally
的方法,该方法在成功和错误时触发。
此方法是否也出现在ES6承诺中?我找不到它。似乎不存在于巴贝尔(6to5)。
非常感谢任何帮助澄清这一点!
由于
答案 0 :(得分:1)
ES6尚未最终确定。它处于草案状态。目前的草案没有// 1) do 2>&1
dup2(2, 1);
// 2) do >/dev/null
close(1);
// FD 2 is still open to the same file FD 1 was just before closing.
fd = open("/dev/null", O_WRONLY, 0666); // fd will be == 1 on success
// Now both FDs are opened to different files.
方法。