gpt4 book ai didi

Deno:退出回调

转载 作者:行者123 更新时间:2023-12-02 02:49:12 25 4
gpt4 key购买 nike

如何添加程序退出的回调?

在nodejs中的实现:

process.on('exit', function (){
console.log('Goodbye!');
});

最佳答案

您可以使用unload

// window. also work outside workers
globalThis.addEventListener("unload", () => {
console.log('goodbye!');
});

setTimeout(() => console.log('before goodbye'), 1000);

它也会在调用 Deno.exit() 时触发。您可以查看有关Program Lifecycle here的更多信息.

关于Deno:退出回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62332153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com