在 chrome 升级到版本 74.0.3729.169(官方构建)(64 位)后,以下代码行曾经工作并停止工作。现在我得到 DOMException 即使权限设置正确。感谢您是否可以解释什么是错误和解决方法。异常详情:
消息:文档未聚焦名称:NotAllowedError 代码:0
navigator.permissions.query({ name: 'clipboard-read' }).then(result => {
// If permission to read the clipboard is granted or if the user will
// be prompted to allow it, we proceed.
if (result.state === 'granted' || result.state === 'prompt') {
navigator.clipboard.readText()
.then(text => {
//my code to handle paste
})
.catch(err => {
console.error('Failed to read clipboard contents: ', err);
});
}
}