作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一些代码用于通过 Electron 中的 ipc 发送异步请求,但我想知道如何中止或取消我已经发出的 ipc 请求。
ipc.on('receivedSoftwareInfo', (info) => {
// TO-DO
});
ipc.send('getSoftwareInfo');
ipc.removeAllListeners();
Events are removed -> async request is still there -> bind events again -> trigger
(I don't want it happen and trigger by old request)
最佳答案
不幸的是,这是不可能的。 IPC 请求由浏览器(此处为 Electron)管理,无法在 JavaScript 中管理。
关于asynchronous - 有没有办法中止在 Electron 中发送的 ipc 异步请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37981671/
我是一名优秀的程序员,十分优秀!