3

我收到“错误:schema.org 的微数据不完整”。使用 Google 的测试工具 ( http://www.google.com/webmasters/tools/richsnippets?q=uploaded:8004e2bf685980a2f0ffadd5c52b2d5f ) 测试标记时的消息。

我已经尽可能地简化了我的代码,我是否缺少某种“必需”类型来摆脱这个错误?这是我目前在我的产品页面上可用的唯一数据。

提前致谢!

<div itemscope itemtype="http://schema.org/Product" id="productdetail">
<img itemprop="image" src="testimage.jpg" width="300" height="300" name="multi" alt="Test" />
<h1 itemprop="name">Product Name</h1>
<span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="convertprice">
    <span itemprop="price">£2.00</span>
</span>
<p itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="stock"><link itemprop="availability" href="http://schema.org/InStock" content="In Stock" />In Stock</p>
<div class="tab_info" id="tab1">
    <p itemprop="description" class="invtdesc2">This is where the product description will be!</p>
</div>

4

1 回答 1

6

看起来这个神秘的错误是因为您错过了第二个报价的价格而触发的。以下标记对我来说没有错误:

<div itemscope itemtype="http://schema.org/Product" id="productdetail">
    <img itemprop="image" src="testimage.jpg" width="300" height="300" name="multi" alt="Test" />
    <h1 itemprop="name">Product Name</h1>
    <span itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="convertprice">
        <span itemprop="price">£2.00</span>
    </span>
    <p itemprop="offers" itemscope itemtype="http://schema.org/Offer" class="stock">
    <span itemprop="price">£2.00</span><link itemprop="availability" href="http://schema.org/InStock" content="In Stock" />In Stock</p>
    <div class="tab_info" id="tab1">
        <p itemprop="description" class="invtdesc2">This is where the product description will be!</p>
    </div>
</div>

我们正在努力提供更多信息性错误消息。感谢您指出了这一点。

于 2013-07-31T22:06:39.157 回答