人员结构化数据缺少姓名?

Person structured-data missing name?

我的页面上有这个:

<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>
...

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

怎么了?

我想你只需要用 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 底部的微数据示例