一个小小的“背景故事”:
您想让用户从弹出窗口中选择并上传文件。但是在 OSX 中,只要文件选择器对话框打开,弹出窗口就会失去焦点并关闭,从而导致其 JS 上下文也被破坏。因此,对话框会立即打开和关闭。
这是MAC 上的一个已知错误已经有一段时间了。
解决方案:
您可以将对话框打开逻辑移动到后台页面,它不受失去焦点的影响。从弹出窗口中,您可以向后台页面发送消息,请求启动浏览和上传过程(请参阅下面的示例代码)。
清单文件.json
{
...
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "Test Extension",
// "default_icon": {
// "19": "img/icon19.png",
// "38": "img/icon38.png"
// },
"default_popup": "popup.html"
},
"permissions": [
"https://www.example.com/uploads"
// The above permission is needed for cross-domain XHR
]
}
弹出窗口.html
...
<script src="popup.js"></script>
</head>
<body>
<input type="button" id="button" value="Browse and Upload" />
...
弹出窗口.js
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('button').addEventListener('click', function () {
chrome.runtime.sendMessage({ action: 'browseAndUpload' });
window.close();
});
});
背景.js
var uploadUrl = 'https://www.example.com/uploads';
/* Creates an `input[type="file]` */
var fileChooser = document.createElement('input');
fileChooser.type = 'file';
fileChooser.addEventListener('change', function () {
var file = fileChooser.files[0];
var formData = new FormData();
formData.append(file.name, file);
var xhr = new XMLHttpRequest();
xhr.open('POST', uploadUrl, true);
xhr.addEventListener('readystatechange', function (evt) {
console.log('ReadyState: ' + xhr.readyState,
'Status: ' + xhr.status);
});
xhr.send(formData);
form.reset(); // <-- Resets the input so we do get a `change` event,
// even if the user chooses the same file
});
/* Wrap it in a form for resetting */
var form = document.createElement('form');
form.appendChild(fileChooser);
/* Listen for messages from popup */
chrome.runtime.onMessage.addListener(function (msg) {
if (msg.action === 'browseAndUpload') {
fileChooser.click();
}
});
注意:作为安全预防措施,ChromefileChooser.click()
仅在用户交互的结果下才会执行。
在上面的例子中,用户点击弹出窗口中的按钮,它向后台页面发送一条消息,调用fileChooser.click();
. 如果您尝试以编程方式调用它,它将不起作用。(例如,在文档加载时调用它不会产生任何影响。)