Feature Police导致iframe页面无法使用粘贴功能

2021/5/19 10:58:56

本文主要是介绍Feature Police导致iframe页面无法使用粘贴功能,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

说明

在Chrome 81版本之上时,通过iframe引入的页面无法正常使用粘贴板。此时,控制台会输出

DOMException: The Clipboard API has been blocked because of a permissions policy applied to the current document. See https://goo.gl/EuHzyv for more details.

错误,这是由于web规范之Feature Police导致的。

Feature Police有些类似于CSP,是安全策略的一种。关于FP的设置有两种,Headers设置与iframe的属性(allow)设置,目前常用的的Feature类型可参考:Features,也可以在浏览器执行

document.featurePolicy.allowedFeatures();

获取当前版本浏览器支持的类型。

解法

针对iframe无法使用粘贴板的问题,可采用

<iframe id = 'ide' allow="clipboard-read; clipboard-write " src = "xxx"></iframe>

加上allow属性即可。



这篇关于Feature Police导致iframe页面无法使用粘贴功能的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程