看了这个, 好像懂了, 但没找到问题原因 (
https://developer.chrome.com/en/docs/privacy-sandbox/permissions-policy/
---
让我复述一遍,
permissions-policy 这个 Header 是用于控制在页面内嵌入(iframe)其它页面时, 是否允许浏览器开启某些功能, 比如当服务器返回:
Permissions-Policy: geolocation=(self "https://trusted-site.example")
时, 且 iframe 中加入了 allow="geolocation" 属性时, 嵌入的 同源(self) 和 https://trusted-site.example 的 ifame 被允许使用 geolocation 功能.
https://developer.chrome.com/en/docs/privacy-sandbox/permissions-policy/
---
让我复述一遍,
permissions-policy 这个 Header 是用于控制在页面内嵌入(iframe)其它页面时, 是否允许浏览器开启某些功能, 比如当服务器返回:
Permissions-Policy: geolocation=(self "https://trusted-site.example")
时, 且 iframe 中加入了 allow="geolocation" 属性时, 嵌入的 同源(self) 和 https://trusted-site.example 的 ifame 被允许使用 geolocation 功能.