这是 实验性技术
检查 浏览器兼容性表格 要小心谨慎在生产中使用这之前。

type 只读特性在 Report interface returns the type of report generated, e.g. deprecation or intervention .

句法

let reportType = reportInstance.type
					

返回

A string representing the type of the report. Currently the available types are deprecation , intervention ,和 crash .

范例

let options = {
  types: ['deprecation'],
  buffered: true
}
let observer = new ReportingObserver(function(reports, observer) {
  let firstReport = reports[0];
  // Log the first report's report type, i.e. "deprecation"
  console.log(firstReport.type);
}, options);
					

规范

规范 状态 注释
Reporting API
The definition of 'Report.body' in that specification.
编者草案

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

No compatibility data found. Please contribute data for "api.Report.body" (depth: 1) to the MDN 兼容性数据存储库 .

另请参阅

元数据

  • 最后修改:
  1. Report
  2. 特性
    1. body
    2. type
    3. url