弃用报告正文:anticipatedRemoval 属性
anticipatedRemoval
是 DeprecationReportBody
接口的只读属性,它返回删除该功能的浏览器版本的发布日期。 此值可用于优先处理警告。 如果此属性返回 null
,因为日期未知,则应将弃用视为低优先级。
值
一个 date
对象,如果日期未知则为 null
。
示例
在此示例中,我们创建一个新的 ReportingObserver
来观察弃用报告,然后将 anticipatedRemoval
的值打印到控制台。
js
let options = {
types: ["deprecation"],
buffered: true,
};
let observer = new ReportingObserver((reports, observer) => {
let firstReport = reports[0];
console.log(firstReport.type); // deprecation
console.log(firstReport.body.anticipatedRemoval);
}, options);
规范
规范 |
---|
弃用报告 # dom-deprecationreportbody-anticipatedremoval |
浏览器兼容性
BCD 表格仅在浏览器中加载