我正试图解决这个问题,我已经阅读了几个教程,包括schema.org文档和Googles结构化数据指南,我找不到明确的答案。直观如何使用微数据来实现这一点,但使用JSON-LD却不是这么做。假设我有一个本地商家的网站,我提供待售产品。如何将LocalBusiness和Products组合到相同的JSON-LD代码块中?就我的理解而言,它们是独立的对象。
代码看起来会更像......
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "My Business"
}
{
"@context": "http://schema.org",
"@type": "Product",
"name": "My Proudct"
}
</script>
或单独的script
标签,如此......
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "My Business"
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Product",
"name": "My Proudct"
}
</script>
还是别的什么?