itemprop =图片元素上的url属性未验证

问题描述 投票:1回答:1

我有下面的代码,如果我在https://search.google.com/structured-data/testing-tool上测试它,我收到一个错误

需要url字段的值。

在图像元素上。

我尝试将itemprop='url'属性放在picturesourceimg元素上,但错误仍然相同。如何添加url属性以便Google接受结构化数据?

<li itemscope itemtype='http://schema.org/LocalBusiness'>
<div>
    <div itemprop='image' itemscope itemtype='http://schema.org/ImageObject'>
        <a href="http://www.example.com/venues/220/studio-54">
        <picture>
            <source itemprop='url' type='image/webp' data-srcset='/images/venues/medium/220_663_studio-54.webp'>
            <img data-src="/images/venues/medium/220_663_studio-54.jpg"/>
        </picture>
        </a>
    </div>
    <div>
        <h3><a href='http://www.example.com/venues/220/studio-54'>
        <span itemprop="name">Studio-54</span></a></h3>
        <div itemprop='address' itemscope itemtype='http://schema.org/PostalAddress'>
        <a itemprop='addressLocality' href="http://www.example.com/vendors/venues/c/netherlands/north-holland/amsterdam">Amsterdam</a>, <span itemprop='addressRegion'>North-Holland</span>
        </div>
    </div>
</div>
</li>
html image url schema.org microdata
1个回答
2
投票

请参阅Microdata规范(工作草案)中的Values部分:

  • itemprop属性添加到imgsource元素时,Microdata使用src属性的值。
  • itemprop属性添加到picture元素时,Microdata使用元素的textContent。

在您的情况下,您可能希望将src属性添加到img元素(除了alt属性之外,还是HTML所需的),并将itempropsource(需要srcset属性)移动到img

<img itemprop="url" src="/images/venues/medium/220_663_studio-54.jpg" data-src="/images/venues/medium/220_663_studio-54.jpg" alt="" />

如果你想保留这样的属性(例如,延迟加载),你可以使用link元素来提供图像的URL(浏览器不加载它):

<div itemprop='image' itemscope itemtype='http://schema.org/ImageObject'>

  <a href='http://www.example.com/venues/220/studio-54'>
    <picture>
      <source type='image/webp' data-srcset='/images/venues/medium/220_663_studio-54.webp'>
      <img data-src='/images/venues/medium/220_663_studio-54.jpg' />
    </picture>
  </a>

  <link itemprop='url' href='/images/venues/medium/220_663_studio-54.webp' />

</div>
© www.soinside.com 2019 - 2024. All rights reserved.