我正在尝试在我的 xhtml 模板中实现 schema.org 的 microData 格式。由于我使用的是 xhtml 模板,因此我需要添加
<div itemprop="reviews" itemscope="itemscope" itemtype="http://schema.org/Review">
代替:
<div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
否则我的模板将不会被解析。我在这里找到了解决方案
我的标记如下所示:
<div itemscope="itemscope" itemtype="http://schema.org/Place">
<div itemprop="aggregateRating" itemscope="itemscope"
itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">#{company.meanRating}</span> stars -
based on <span itemprop="reviewCount">#{company.confirmedReviewCount}</span> reviews
</div>
<ui:repeat var="review" value="#{company.reverseConfirmedReviews}">
<div itemprop="reviews" itemscope="itemscope" itemtype="http://schema.org/Review">
<span itemprop="name">Not a happy camper</span> -
by <span itemprop="author">#{review.reviewer.firstName}</span>,
<div itemprop="reviewRating" itemscope="itemscope" itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">1</span>/
<span itemprop="bestRating">5</span>stars
</div>
<span itemprop="description">#{review.text} </span>
</div>
</ui:repeat>
</div>
在http://www.google.com/webmasters/tools/richsnippets对此进行测试时,我没有得到任何星星或汇总评论计数
我在这里做错了什么?