English 中文(简体)
利用图像进行的评审和评级——图示.org
原标题:review count and rating using an image - schema.org

我需要一些帮助,把一些丰富的信条带给我的现场。

I inserted the review microdata following the instructions given on schema.org here http://schema.org/docs/gs.html#advanced_missing using the star-image for rating and the text for review count, but testing it with the test tool it showed nothing. Example page where we use the microdata for the reviews.

这里我使用的是

<div itemprop="reviews" itemscope itemtype="http://schema.org/AggregateRating">
  <A HREF="javascript:an();"><img src="/images/stars/4.5.gif" border=0></a>
  <meta itemprop="ratingValue" content="4.5" /> 
  <meta itemprop="bestRating" content="5" />
  <BR>
  <span class="bottomnavfooter">
    <A HREF="javascript:an();">Read (<span itemprop="ratingCount">70</span>) Reviews</A 
  </span>
</div>

我随后创建了静态测试页面,并根据指示做了一些改动。 页: 1 http://www.google.com/support/webmasters/bin/answer.py?answer=172705。 (这不同于我在表象.org中发现的情况!) ,但测试只退回了产品名称,而不是价格或审查。

rel=“noreferer”> 这里是我的测试页——请看Im的错失之处。

感谢!

最佳回答

上述代码表将失效,因为它有<条码>项目prop>>,用于<条码>aggregateR,但附在<条码><>项目范围/代码>上。 这还无助于您最后的贴身标签缺失>,但我猜测,当你将守则复制为SO时,这只是一次事故。

另一个主要问题是,Schema.org网站的例子是错误的(我已经就此提交了一份简要报告)。 它们提及<条码>项目prop=“审查”,而不是<条码>项目prop=“aggregateRating”。 守则应当更像:

<div itemscope itemtype="http://schema.org/Offer">
  <span itemprop="name">Ray-Ban 2132 New Wayfarer Sunglasses</span>
  <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <a href="javascript:an();"><img src="/images/stars/4.5.gif" border=0></a>
    <meta itemprop="ratingValue" content="4.5" /> 
    <meta itemprop="bestRating" content="5" /> 
    <br />
    <span class="bottomnavfooter">
      <a href="javascript:an();">Read (<span itemprop="ratingCount">70</span>) Reviews</a>
     </span>
  </div>
</div>
问题回答

暂无回答




相关问题
MicroData Headaches, Nesting, and Mixed up info

I understand the majority of this topic and how to nest something like address vocabulary in person vocabulary. but I m wondering into more details for less straight forward pieces of info or "mixed ...

Breadcrumb microdata help

I m trying to help Google generate appropriate breadcrumb details for my website. I am currently using this as the breadcrumb: <div id="breadcrumb"> <span class="crust" itemscope="itemscope" ...

Bizarre problem with Google s Rich Snippets Testing Tool

I m currently experiencing the weirdest problem with Google s Rich Snippets Testing Tool. It kept throwing up warnings for my website which didn t make sense, so I pulled all of the structured markup ...

microformats, rdf or microdata

Is there any difference between using one of this technologies? I m building now a site using HTML5, and I m having hard time to decide which one of them to use. I cannot see any difference between ...

Are Rich Snippets page specific or domain specific?

Google will now parse certain microdata (for example reviews) on your web pages and display the info in search results. They call this Rich Snippets I am wondering is this page specific or domain ...

热门标签