gpt4 book ai didi

schema.org - Google SDTT错误: “The review has no reviewed item specified.”

转载 作者:行者123 更新时间:2023-12-04 13:22:25 27 4
gpt4 key购买 nike

我在Google Rich Snippets Tool中检查了我网站的Rich Snippets,但出现错误:

The review has no reviewed item specified.

Picture of the error Google shows



我如何解决它?

代码是:
<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。有两种方法可以做到这一点(不要同时做):

  • 使用包含项,并将AggregateRating指定为属性。您(有点)建议您通过使用不包含项目的itemprop来尝试此操作。如果要使用此功能,则需要将itemprop包装在合适的物品中。合适的项目是:产品,品牌,报价,事件,组织,位置,服务,CreativeWork。这些项目指定了可包含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>
  • 使用AggregateRating的itemReviewed属性,指定评级与之相关的事物。如果您使用它,请不要忘记从问题代码中删除itemprop。

    <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/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com