1

我的 Schema.org 丰富片段已经正常工作了很长时间。

现在,当我在Google 的 Rich Snippets testing tool尝试产品页面时,我收到以下错误:

schema.org 的微数据不完整。

我不确定我错过了什么,谷歌最近有没有做出任何改变?我阅读了数百次 Google 的政策,但到目前为止仍然没有运气。

更新

我用最少的代码为我的标记制作了一个页面,仍然在 Google 的 Rich Snippets 测试工具中:错误:带有 schema.org 的不完整微数据。

这是我的源代码:

<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name" id="product-name">ZTechnik Windscherm VStream</span>
<img itemprop="image" id="image" src="http://www.mlmparts.com/media/catalog/product/cache/1/image/325x325/9df78eab33525d08d6e5fb8d27136e95/v/s/vstream_4.jpg" alt="ZTechnik Windscherm VStream" title="ZTechnik Windscherm VStream" /></a>
<span itemprop="description"><p>Dit is de nieuwe norm op het gebied van design, technologie en comfort voor de touring rijder.</p></span>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
    <meta itemprop="itemReviewed" style="display:none;" content="ZTechnik Windscherm VStream" />
    <meta itemprop="ratingValue" style="display:none;" content="5" />
    <span itemprop="reviewCount">1</span>
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
    <meta itemprop="pricecurrency" content="EUR" />
    <span itemprop="lowPrice">€ 119,00</span>
    <span itemprop="highPrice">€ 399,00</span>
    <link itemprop="availability" href="http://schema.org/InStock" />
</div>
<div itemprop="reviews" itemscope itemtype="http://schema.org/Review">
    <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating" style="display:none;">
        <meta itemprop="worstRating" content = "1"/>
        <span itemprop="ratingValue">5</span>
        <span itemprop="bestRating">5</span>
    </div>
    <h3><span itemprop="name">Een prima scherm</span></h3>
    <span itemprop="reviewbody">Het scherm is goed afgewerkt en heeft een uitstekende pasvorm.</span>
    <strong><time itemprop="datepublished" datetime="202013-10-28">Posted on 28-10-2013</time> by <span itemprop="author">Ztechnik verhoogd scherm BMW  F650CS</span></strong>
</div>

我错过了什么?

4

2 回答 2

2

我的不好,我发现了问题。

<strong><time itemprop="datepublished" datetime="202014-02-13">Posted on 13-02-2014</time> by <span itemprop="author">Tom</span></strong>

年份格式错误“202014”,将年份固定为“2014”后,一切正常。

谢谢你的帮助

于 2014-03-02T06:55:07.560 回答
0

还可以尝试其他验证器工具来解决可能的问题:

它们都显示了带有特定信息的致命错误(比谷歌更详细)。修复这些后,使用 Google Richsnippets 测试工具再次对其进行测试。

于 2014-03-01T12:17:50.153 回答