【问题标题】:Person structured-data missing name?人员结构化数据缺少姓名?
【发布时间】:2016-08-07 21:56:55
【问题描述】:

我的页面上有这个:

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

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

怎么了?

【问题讨论】:

    标签: structured-data


    【解决方案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底部的微数据示例

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多