人结构化数据缺少名称?

时间:2016-08-07 13:49:54

标签: structured-data

我的页面上有这个:

<div itemscope itemtype="http://schema.org/Person">
  <a href="john.html" itemprop="url">John W</a>
</div>
<div itemscope itemtype="http://schema.org/Person">
  <a href="chloe_m.html" itemprop="url">Chloe M</a>
</div>
...

但我的所有项目都有错误:缺少:名称

有什么问题?

1 个答案:

答案 0 :(得分:1)

我认为您只需添加itemprop="name"元素,如下所示:

<div itemscope itemtype="http://schema.org/Person">
    <a href="john.html" itemprop="url">
        <span itemprop="name">John W</span>
    </a>
</div>
<div itemscope itemtype="http://schema.org/Person">
    <a href="chloe_m.html" itemprop="url">
        <span itemprop="name">Chloe M</span>
    </a>
</div>

查看this page

底部的微数据示例