我有一个带有“微数据”和“json+ld”代码的产品页面。两个代码都引用相同的 @id URI 对象(http://www.example.org/product#this)所以我希望“混合/合并”这两个属性,但结构化数据测试工具显示 2“个人“产品如此......
1- Google 是否支持在同一页面中使用两种语法?
2-这实施得好吗?我可以使用微数据的 itemId 和 json+ld 的 @id 将两个代码引用到同一个对象吗?
3- 这会在结构数据索引方面损坏我的页面吗?
谢谢
您可以在测试工具中使用此代码进行检查:
<div itemscope itemtype="http://schema.org/Product" itemid="http://www.example.org/product#this">
<a itemprop="url" href="http://www.example.org/product">
<div itemprop="name"><strong>Product Name</strong></div></a>
<div itemprop="description">Product Description</div>
<div itemprop="brand" itemscope itemtype="http://schema.org/Organization"><span itemprop="name">Product Brand</span></div>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> <span itemprop="price">100</span><link itemprop="itemCondition" href="http://schema.org/NewCondition" /> New</div>
</div>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@id": "http://www.example.org/product#this",
"name": "Product Name",
"@type": "Product",
"image": "http://www.example.com/anvil_executive.jpg",
"mpn": "925872",
"brand": {
"@type": "Thing",
"name": "ACME"
},
"offers": {
"@type": "Offer",
"priceCurrency": "USD",
"price": "119.99",
"itemCondition": "http://schema.org/UsedCondition",
"availability": "http://schema.org/InStock"
}
}
</script>