InterventionReportBody - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The InterventionReportBody
interface of the Reporting API represents the body of an intervention report (the return value of its Report.body
property).
An intervention report is generated when usage of a feature in a web document has been blocked by the browser for reasons such as security, performance, or user annoyance. So for example, a script was been stopped because it was significantly slowing down the browser, or the browser's autoplay policy blocked audio from playing without a user gesture to trigger it.
Properties
id
- A string representing the intervention that generated the report. This can be used to group reports by deprecated feature.
message
- A string containing a human-readable description of the intervention, including information such how the intervention could be avoided. This typically matches the message a browser will display in its DevTools console when an intervention is imposed, if one is available.
sourceFile
- A string containing the path to the source file where the intervention occurred, if known, or
null
otherwise. lineNumber
- A number representing the line in the source file in which the intervention occurred, if known, or
null
otherwise. columnNumber
- A number representing the column in the source file in which the intervention occurred, if known, or
null
otherwise.
Examples
let options = {
types: ['intervention'],
buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
let firstReport = reports[0];
console.log(firstReport.type); // intervention
console.log(firstReport.body.id);
console.log(firstReport.body.message);
console.log(firstReport.body.sourceFile);
console.log(firstReport.body.lineNumber);
console.log(firstReport.body.columnNumber);
}, options);
Specifications
Specification | Status | Comment |
---|---|---|
Reporting API The definition of 'InterventionReportBody' in that specification. | Editor's Draft |
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论