内容脚本与背景页面通信[同步]

发布于 2024-09-10 20:15:05 字数 435 浏览 7 评论 0原文

你好,好的,我知道内容脚本可以使用以下方式与后台页面通信:

chrome.extension.sendRequest({action:'test'}, function(response) {
  //code here...
});

someFunction();

但是是否可以同步通信?基本上要等到响应返回内容脚本后再执行 someFunction() 吗?

如果没有,是否可以使用普通的 xmlhttprequest 与 bg 页面通信?

你为什么问?

我正在将内容脚本加载到“document_start”(必需)上的网页中,CS 中的变量之一取决于选项页面中设置的 localStorage 变量。因此,在调用 someFunction() 之前,我需要后台页面中的 localStorage 变量。

提前致谢。

Howdy, ok I'm aware that a content script can communicate with the background page using:

chrome.extension.sendRequest({action:'test'}, function(response) {
  //code here...
});

someFunction();

But is it possible to communicate synchronously? Basically wait until the response comes back to the content script before executing someFunction()?

If not, is it possible to communicate with the bg page using a normal xmlhttprequest?

Why you ask?

I am loading my content script into the web page on "document_start" (required) and one of my variables in the CS depends on a localStorage variable set in the options page. So I need this localStorage variable from the background page before someFunction() is called.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

殤城〤 2024-09-17 20:15:05

您可以链接回调来调用下一个请求。

或者

您可以显式指定 XHR 是同步的。

chrome.extension.sendRequest({action:'test'}, function(response) {
    someFunction(response);  // Calling the function
    // or
    chrome.extension.sendRequest(...);
});
function someFunction (resp) {
    // Execute code
};

You can chain the callbacks to call the next request.

or

You can explicitly specify the XHR to be synchronous.

chrome.extension.sendRequest({action:'test'}, function(response) {
    someFunction(response);  // Calling the function
    // or
    chrome.extension.sendRequest(...);
});
function someFunction (resp) {
    // Execute code
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文