2014-02-28 48 views
1

我的帶有Schema.org的豐富網頁片段已經在很長一段時間內正常工作了。Google結構化數據測試工具和Schema.org

現在,當我嘗試了產品頁面Google's Rich Snippets testing tool,我得到以下錯誤:

Incomplete microdata with schema.org.

林不知道我缺少什麼,沒有谷歌進行任何更改最近? 我讀過Google的保單數百次,但至今仍然沒有成功。錯誤:不完整的微觀數據使用schema.org

UPDATE

我在谷歌的豐富網頁摘要測試工具使用最少的代碼頁爲我的標記,還是。

這裏我的源代碼:

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

我缺少什麼?

+0

請問您能否給出一個最小的代碼示例,給出這個錯誤?否則,當你的頁面被編輯或去404時,你的問題不會對任何人有用。 – unor

+0

謝謝。我已經把代碼。 – user4625

回答

0

也嘗試其他驗證工具來解決可能出現的問題:

他們都表示致命錯誤有關於他們的具體信息(更比谷歌冗長)。修復之後,使用Google Richsnippets測試工具再次測試。

+0

我認爲這不是html驗證的問題。我用我的最小標記和格式良好的html製作了一個蹩腳的頁面。 – user4625

2

我的不好,我找到了問題。

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

年份格式錯誤「202014」,在將年份固定到「2014」後,一切正常。

感謝您的幫助

相關問題