作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 chrome 扩展程序使用长期存在的“端口”对象在“内容脚本”和“弹出”页面之间传递消息。 “弹出窗口”能够向“内容脚本”事件监听器发送消息。但是,“内容脚本”中的“端口”对象无法将消息发送到“弹出”页面。
var port = chrome.extension.connect({"name":"swap"});
// listener for incoming connections
chrome.extension.onConnect.addListener(function( incomingPort ){
// listener on incoming messages
incomingPort.onMessage.addListener(function( msg ){
if( msg.command === 'get_scripts' ){
//do work
}
var scrs = { 'scripts' : 'name' };
var result = port.postMessage( scrs );
});
});
当执行 'port.postMessage(Object obj)' 时,插件抛出以下错误,
Error in event handler for 'undefined': Attempting to use a disconnected port object Error: Attempting to use a disconnected port object
at PortImpl.postMessage (miscellaneous_bindings:54:5)
at chrome-extension://loiamkgdhfjdlkcpehnebipeinpcicfj/swap.js:27:31
at [object Object].dispatch (event_bindings:203:41)
at Object.<anonymous> (miscellaneous_bindings:250:22) event_bindings:207
我尝试过使用“Port”对象和“incomingPort”对象,两者都抛出相同的“错误”。感觉它与预先创建的“端口”对象的范围有关。
插件代码可在这个 git 存储库中获得 https://github.com/snambi/chrome_plugin/tree/master/src/chrome
这个插件有什么问题?
最佳答案
我已经查看了您的代码,但对我来说毫无意义:
onMessage
和postMessage
方法吗?一个端口足以双向通信。由于您的扩展程序没有后台页面,并且内容脚本相对无用,因此我认为您的扩展程序的核心是浏览器操作弹出窗口。除了默认注入(inject)内容脚本,您还可以使用以下流程:
popup.html
和 popup.js
被执行。
chrome.runtime.onConnect
添加一个事件监听器, 接收端口请求。chrome.tabs.query({active:true, windowId:-2}, callback_function);
在当前选项卡中选择当前窗口。 (-2 是 chrome.windows.WINDOW_ID_CURRENT
常量)callback_function
接收一个参数:一组选项卡。由于当前窗口不可能没有标签,所以选择数组的第一个元素:var tab = tabs[0];
chrome.tabs.executeScript(tab.id, {file:'swap.js'});
执行内容脚本。chrome.runtime.connect
连接到弹出窗口.我还看到您正在使用 port == null
来检查端口是否有效。如果这样做,请通过在端口断开连接时使变量无效来确保比较有意义:
var port;
chrome.runtime.onConnect.addListener(function(_port) {
// ...optional validation of port.name...
port = _port;
port.onMessage.addListener(function(message) { /* .. logic .. */});
port.onDisconnect.addListener(function() {
port = null;
});
});
关于google-chrome - Chrome 消息传递错误 : Attempting to use a disconnected port object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11782875/
我是一名优秀的程序员,十分优秀!