对象作为 React 子对象无效,在下一个 js 中出现错误
2021-11-05
359
我在项目中使用最新版本的 next js。最近我遇到了对象作为 react js child 无效的错误。
首先导入 Head 组件是 next js,在项目中使用 SEO schema 结构后,我遇到了错误。请指导我如何解决这个问题。我也在脚本标签内部和外部使用了 {},但对我来说不起作用。
<Head>
<title>Random color project </title>
<meta
name="description"
content="Random Color tool help to genrate random color base on your click. every time when you click on button random color genrate a color "
/>
{/* rest code */}
{/* SEO Schema structure code for search egine */}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
image: ["https://avatars2.githubusercontent.com/u/32416397"],
author: {
"@type": "Person",
name: "Rajdeep Singh"
},
....
}
</script>
</Head>
1个回答
尝试下面的方法代替使用对象的脚本。
590654004
Amila Senadheera
2021-11-05