我正在使用
NextSeo
,但无法通过在客户端获取数据来更新元数据。
useEffect(()=>{
fetch(assetURL)
.then((res) => res.json())
.then((data) => {
console.log(data);
})
.catch((error) => {
console.error("Error fetching data:", error);
});
使用 NextSEO
<NextSeo
{...defaultSeoProp}
title={data?.name ?? 'Asset Name' }
description={data?.description ?? ''}
openGraph={{
title: data?.name ?? '',
description: data?.description ?? '',
images: [{ url: data?.thumbnail ?? '', width: 270, height: 270 }],
}}
/>
当我共享特定资产的 URL 时,爬虫仅获取默认元数据而不是更新的元数据