未使用 Next.js 在 Google Analytics 中设置页面标题

时间:2020-12-29 15:29:05

标签: google-analytics next.js

我已经在 Next.js 中配置了我的 Google Analytics,但我遇到了一个奇怪的问题,即分析无法检测到我的网页,而是显示 (not set)。其他一切似乎都正常。

我已将脚本添加到 <Head>_document.js 标签内,并多次检查拼写没有任何错误。

有人知道会发生什么吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

您的网页似乎没有 document title 集。 Next.js中设置文档标题可以直接在每一页使用next/head实现。

// Let's assume this is a page under `/pages/index.js`
import Head from 'next/head'

function IndexPage() {
    return (
        <div>
            <Head>
                <title>Index page title</title>
            </Head>
            <p>Index page content</p>
        </div>
    )
}

export default IndexPage