“对于文本类型的对象,Google无法识别属性gtin12”

时间:2019-07-12 07:47:54

标签: schema.org microdata google-rich-snippets

我从https://schema.org/identifierhttps://schema.org/Text阅读了一些信息。

<div itemprop="identifier" itemtype="http://schema.org/Text" itemscope>
  <meta itemprop="gtin12" content="{$product.upc}" />
</div>

此处存在https://schema.org/Text属性gtin12,但我在Google Schema测试器中收到此错误:

  

对于gtin12类型的对象,Google无法识别属性Text

1 个答案:

答案 0 :(得分:1)

Text是一种数据类型。数据类型不应该像这样使用。

如果要将gtin12添加到Product,则无需指定identifier(因为gtin12是{{1}的子属性})或identifier(在Microdata中,Text的值是文本值)。

content
<!-- if the gtin12 should not be visible on the page -->
<article itemscope itemtype="http://schema.org/Product">
  <meta itemprop="gtin12" content="{$product.upc}" />
</article>