我从https://schema.org/identifier和https://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
。
答案 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>