Skip to main content

· One min read
Alan

依次进入 设置 > 时间和语言 > 语言 > 首选语言 > 中文(选项) > 微软拼音(选项) > 词库和自学习 > 用户定义的短语(添加或编辑自定义短语) > 添加用户自定义的短语(添加)

添加短语的窗口里输入拼音(比如 riqi),然后短语里输入 %yyyy%-%MM%-%dd%

支持的其他占位符如下:

  • yyyy
  • MM
  • dd
  • HH 小时
  • mm 分钟
  • ss

· One min read
Alan

Node.js 的流调用 pipe 方法之后会返回一个新的流, 监听这个新流的finish事件就可以知道pipe完成了:

axios({
method: "GET",
url: "https://www.bilibili.com/",
responseType: "stream"
}).then((response: AxiosResponse<Stream>) => {
const newStream = response.data.pipe(fs.createWriteStream(`./save-file.html`));
newStream.on("finish", () => {
// 这里流pipe已经完成
});
});