我在 Windows 上的本机消息同步有问题。我正在尝试在 backgroundPage 和 hostApp 之间同步消息。通常,我们使用这样的原生消息传递:
//popup.js
function appendMessage(text) {
document.getElementById('response').innerHTML += "<p>" + text + "</p>";
}
function sendNativeMessage() {
message = {"command": document.getElementById('input-text').value};
port.postMessage(message);
appendMessage("Sent message: <b>" + JSON.stringify(message) + "</b>");
}
function onNativeMessage(message) {
appendMessage("Received message: <b>" + JSON.stringify(message) + "</b>");
}
function onDisconnected() {
appendMessage("Failed to connect: " + chrome.runtime.lastError.message);
port = null;
updateUiState();
}
function connect() {
var hostName = "com.google.chrome.example.dmtest1";
appendMessage("Connecting to native messaging host <b>" + hostName + "</b>");
port = chrome.runtime.connectNative(hostName);
port.onMessage.addListener(onNativeMessage);
port.onDisconnect.addListener(onDisconnected);
updateUiState();
}
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('connect-button').addEventListener(
'click', connect);
document.getElementById('send-message-button').addEventListener(
'click', sendNativeMessage);
updateUiState();
});
<html>
<head>
<script src='./popup.js'></script>
</head>
<body>
<button id='connect-button'>Connect</button>
<input id='input-text' type='text' />
<button id='send-message-button'>Send</button>
<div id='response'></div>
</body>
</html>
但是 sendNativeMessage() 和 onNativeMessage(..) 函数是异步的,我想让它们同步。我尝试了下面的方法,但无法从主机(c++ exe)获取响应数据,导致chrome崩溃。
function sendNativeMessage() {
var message = {"command": document.getElementById('input-text').value};
port.postMessage(message);
appendMessage("Sent message: <b>" + JSON.stringify(message) + "</b>");
port.onMessage.addListener(function(msg) {
appendMessage("Receive message: <b>" + JSON.stringify(msg) + "</b>");
});
}
我该怎么做,有可能吗,有帮助吗?