作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在Google Rich Snippets Tool中检查了我网站的Rich Snippets,但出现错误:
The review has no reviewed item specified.
<div itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">5</span> stars - based on <span itemprop="reviewCount">21</span> reviews
</div>
最佳答案
该错误消息很容易解释,其中包含您所遇到的问题之一,但这不是您所呈现的代码的唯一问题。另一个问题是您使用了itemprop,而没有这是其属性的项目。
AggregateRating需要对项目进行评级。如果不指定适用于什么,就无法拥有AggregateRating。有两种方法可以做到这一点(不要同时做):
<div itemscope itemtype="http://schema.org/Product">
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">5</span> stars - based on <span itemprop="reviewCount">21</span> reviews
</div>
<!-- other Product properties -->
</div>
<div itemscope itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">5</span> stars - based on <span itemprop="reviewCount">21</span> reviews
<div itemprop="itemReviewed" itemscope itemtype="http://schema.org/Product">
<!-- Product properties -->
</div>
</div>
关于schema.org - Google SDTT错误: “The review has no reviewed item specified.” ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37008293/
我是一名优秀的程序员,十分优秀!