这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
allowedFeatures()
方法在
FeaturePolicy
interface returns a list of directive names of all features allowed by the feature policy.enables introspection of individual directives of the Feature Policy it is run on. As such,
allowedFeatures()
method returns a subset of directives returned by
features()
.
const allowed = FeaturePolicy.allowedFeatures()
None.
An array of strings representing the Feature Policy directive names that are allowed by the Feature Policy this method is called on.
The followin example logs all the allowed directives for the current document. Please note that these features might be restricted by the Permissions API, if the user did not grant the corrsponding permission yet.
// First, get the Feature Policy object
const featurePolicy = document.featurePolicy
// Then query feature for specific
const allowed = featurePolicy.allowedFeatures()
for (const directive of allowed){
console.log(directive)
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
Feature Policy
The definition of 'allowsFeature' in that specification. |
编者草案 | 初始定义。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
allowedFeatures
|
Chrome
74
|
Edge 79 | Firefox 65 | IE No |
Opera
62
|
Safari No | WebView Android 74 |
Chrome Android
74
|
Firefox Android 65 |
Opera Android
48
Disabled
|
Safari iOS No | Samsung Internet Android 11.0 |
完整支持
不支持
实验。期望将来行为有所改变。
用户必须明确启用此特征。