这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
body
只读特性在
Report
interface returns the body of the report, which is a
ReportBody
object containing the detailed report information.
let reportBody = reportInstance.body
A
ReportBody
object containing the detailed report information. Depending on what
type
the
Report
is, the object returned will actually be a
DeprecationReportBody
,
InterventionReportBody
,
CrashReportBody
,或
FeaturePolicyViolationReportBody
. These all inherit from the base
ReportBody
class — study their reference pages for more information on what the particular report body types contain.
let options = {
types: ['deprecation'],
buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
let firstReport = reports[0];
// Log the first report's report body, i.e. a DeprecationReportBody object
console.log(firstReport.body);
}, options);
| 规范 | 状态 | 注释 |
|---|---|---|
|
Reporting API
The definition of 'Report.body' in that specification. |
编者草案 |
No compatibility data found. Please contribute data for "api.Report.body" (depth: 1) to the MDN 兼容性数据存储库 .