有没有办法提取onMessage responseCallback值

时间:2019-04-12 18:14:53

标签: google-chrome-extension

我有一个sendMessage方法,应该从后台脚本中获取响应。

但是,sendMessage不会返回任何内容,要获取响应,我必须使用其内置的responseCallback函数

chrome.runtime.sendMessage({ request: 'requestvalue' }, response => {
  console.log(response);
})

我是否可以获取“响应”值作为返回值,以便以后使用?

类似这样的东西...

const response = chrome.runtime.sendMessage({ request: 'requestvalue' });

0 个答案:

没有答案