gpt4 book ai didi

javascript - BrowserExtension webRequest.onBeforeRequest 返回 promise

转载 作者:行者123 更新时间:2023-11-30 14:52:24 33 4
gpt4 key购买 nike

我在 Chrome 和 FireFox 扩展中有以下内容:

function webListener(requestDetails) {
var asyncCancel = new Promise((resolve, reject) => {
resolve({ cancel : true });
});
return asyncCancel;
}

chrome.webRequest.onBeforeRequest.addListener(
webListener, {
urls: ["<all_urls>"],
types: ["script"]
}, ["blocking", "requestBody"]
);

问题是它不会取消请求。我阅读了 Chrome 文档和 Firefox 文档,对于 Firefox,它说它基于 Chrome 的 API,并且可以返回异步处理请求的 promise 。

但是,除非我让它同步,否则它无法取消(IE:如果我只返回 {cancel : true} 而不是 promise,它会起作用)。

是我做错了什么还是 Chrome 和 Firefox 只支持这里的同步请求处理?

最佳答案

Chrome documentation对我来说,就好像您必须使用同步的阻塞响应来取消请求一样,这也是我的经验。

强调我的:

If the optional opt_extraInfoSpec array contains the string 'blocking' (only allowed for specific events), the callback function is handled synchronously. That means that the request is blocked until the callback function returns. In this case, the callback can return a webRequest.BlockingResponse that determines the further life cycle of the request. Depending on the context, this response allows cancelling or redirecting a request (onBeforeRequest), cancelling a request or modifying headers (onBeforeSendHeaders, onHeadersReceived), and cancelling a request or providing authentication credentials (onAuthRequired).

我的理解是,如果您的事件处理程序是同步的,您只能影响请求的生命周期(比如取消它)。

此外,文档也没有提及直接支持 Promise 而不是 BlockingResponse,因此这似乎是 Firefox 特定的功能。

关于javascript - BrowserExtension webRequest.onBeforeRequest 返回 promise ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47910732/

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