Head
我们公开了一个内置组件,用于将元素附加到页面的 head
中
import Head from 'next/head'
function IndexPage() {
return (
<div>
<Head>
<title>My page title</title>
</Head>
<p>Hello world!</p>
</div>
)
}
export default IndexPage
避免重复标签
为了避免在你的 head
中出现重复标签,你可以使用 key
属性,这将确保标签只渲染一次,如下例所示
import Head from 'next/head'
function IndexPage() {
return (
<div>
<Head>
<title>My page title</title>
<meta property="og:title" content="My page title" key="title" />
</Head>
<Head>
<meta property="og:title" content="My new title" key="title" />
</Head>
<p>Hello world!</p>
</div>
)
}
export default IndexPage
在这种情况下,只有第二个 <meta property="og:title" />
被渲染。具有重复 key
属性的 meta
标签会被自动处理。
须知:
<title>
和<base>
标签会被 Next.js 自动检查重复项,因此对于这些标签来说,使用 key 不是必要的。
当组件卸载时,
head
的内容会被清除,因此请确保每个页面完全定义了其在head
中需要的内容,而无需假设其他页面添加了什么。
使用最小嵌套
title
、meta
或任何其他元素(例如 script
)需要作为 Head
元素的直接子元素包含,或最多包装到一层 <React.Fragment>
或数组中——否则标签将无法在客户端导航中被正确拾取。
为脚本使用 next/script
我们建议在你的组件中使用 next/script
,而不是在 next/head
中手动创建 <script>
。
没有 html
或 body
标签
你不能使用 <Head>
在 <html>
或 <body>
标签上设置属性。这将导致 next-head-count is missing
错误。next/head
只能处理 HTML <head>
标签内的标签。
这有帮助吗?