我有下面的代码,如果我在https://search.google.com/structured-data/testing-tool上测试它,我收到一个错误
需要
url
字段的值。
在图像元素上。
我尝试将itemprop='url'
属性放在picture
,source
和img
元素上,但错误仍然相同。如何添加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>
请参阅Microdata规范(工作草案)中的Values部分:
itemprop
属性添加到img
或source
元素时,Microdata使用src
属性的值。itemprop
属性添加到picture
元素时,Microdata使用元素的textContent。在您的情况下,您可能希望将src
属性添加到img
元素(除了alt
属性之外,还是HTML所需的),并将itemprop
从source
(需要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>