我试图恭维"评价评分"我的Google商家信息上的架构。
我的"总分"结构如下:
<div class="span7" itemscope itemtype="http://schema.org/Place">
<div class="stars" onclick="document.location.href='http://www.chambresdhotes.org/cgi-bin/links/review.cgi?ID=65995'" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<span class="badge badge-success">5 avis</span>
<meta itemprop="bestRating" content="10" />
<meta itemprop="worstRating" content="8" />
<meta itemprop="ratingValue" content="9.2" />
<meta itemprop="ratingCount" content="5" />
</div>
</div>
然后,对于该页面上的每个评论 - 我也有:
<div class="reviewBox" itemscope itemtype="http://schema.org/Review">
<meta itemprop="author" content="Patrice" />
<meta itemprop="itemreviewed" content="Les Collinades" />
<div class="reviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span class="link-rating"><span class="rating-5"></span></span>
<meta itemprop="bestRating" content="5" />
<meta itemprop="ratingValue" content="5" />
</div>
</div>
在此处对Google工具进行架构检查时,这一切都显示正常:
&#34;整体&#34;排名/评论数量等:
...然后是个人评论分数:
然而,当你到这里错了:
我为什么这样做有点困惑。我错过了什么?
谢谢!
答案 0 :(得分:3)
看起来您已经填写了bestRating
和worstRating
,其中包含您的业务收到的最高和最差评分。但是,这些旨在用于定义最佳可能和最差可能的额定值。
根据您的示例,我假设您的客户可以按1至10的等级对您的业务评分。因此,bestRating
必须为10
而worstRating
必须是1
。
然后您必须自己计算平均总体评分,并将其放在ratingValue