我尝试发布一小段代码并尝试在Google结构化数据测试工具中对此进行测试,但没有显示丰富的代码段。
以下是我的意思截图:
这是我使用的代码,我直接从Schema.org上获取:
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Product name</span>
<div itemprop="aggregateRating"
itemscope itemtype="http://schema.org/AggregateRating">
Rated <span itemprop="ratingValue">5</span>/5
</div>
</div>
为什么它没有出现在测试工具中?
谢谢,巴乔
答案 0 :(得分:5)
对于汇总评论评分而非单一评论,您必须使用ratingValue
指定reviewCount
是平均值的评论总数。使用您的代码作为基础:
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Product name</span>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
Rated <span itemprop="ratingValue">5</span>/5
Based on <span itemprop="reviewCount">100</span> reviews
</div>
</div>
请注意添加Based on <span itemprop="reviewCount">100</span> reviews
请参阅schema specification的示例1,以及Google's examples中使用count
(使用数据词汇表)。