NextJS中文文档 - Analytics
Next.js 内置了对测量和报告性能指标的支持。你可以使用 useReportWebVitals
hook 来自行管理报告,或者使用 Vercel 提供的托管服务来自动收集和可视化指标。
客户端检测/nextjs-cn/
对于更高级的分析和监控需求,Next.js 提供了一个 instrumentation-client.js|ts
文件,该文件会在你的应用程序的前端代码开始执行之前运行。这非常适合设置全局分析、错误跟踪或性能监控工具。
要使用它,在你的应用程序的根目录创建一个 instrumentation-client.js
或 instrumentation-client.ts
文件:
js
// 在应用程序启动前初始化分析
console.log('Analytics initialized')
// 设置全局错误跟踪
window.addEventListener('error', (event) => {
// 发送到你的错误跟踪服务
reportError(event.error)
})
构建你自己的分析
Web Vitals
Web Vitals 是一组有用的指标,旨在捕捉网页的用户体验。包括以下所有 web vitals:
你可以使用 name
属性来处理这些指标的所有结果。
将结果发送到外部系统
你可以将结果发送到任何端点,以测量和跟踪你的网站上的真实用户性能。例如:
js
useReportWebVitals((metric) => {
const body = JSON.stringify(metric)
const url = 'https://example.com/analytics'
// 如果可用,使用 `navigator.sendBeacon()`,否则回退到 `fetch()`。
if (navigator.sendBeacon) {
navigator.sendBeacon(url, body)
} else {
fetch(url, { body, method: 'POST', keepalive: true })
}
})
注意事项:如果你使用 Google Analytics,使用
id
值可以让你手动构建指标分布(以计算百分位数等)。
jsuseReportWebVitals((metric) => { // 如果你按照这个示例初始化了 Google Analytics,就使用 `window.gtag`: // https://github.com/vercel/next.js/blob/canary/examples/with-google-analytics window.gtag('event', metric.name, { value: Math.round(metric.name === 'CLS' ? metric.value * 1000 : metric.value), // 值必须是整数 event_label: metric.id, // id 对当前页面加载是唯一的 non_interaction: true, // 避免影响跳出率 }) })
阅读更多关于将结果发送到 Google Analytics 的信息。