【发布时间】:2016-07-12 05:04:13
【问题描述】:
搜索引擎对这两个示例的处理方式相同吗?
如果是,是否有任何理由选择其中一个?
如果不是,有什么区别?
非嵌套结构化数据:
[{
"@context": "http://schema.org",
"@type": "WebPage",
...
},{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
...
},{
"@context": "http://schema.org",
"@type": "VideoObject",
...
}]
嵌套结构化数据:
[{
"@context": "http://schema.org",
"@type": "WebPage",
"breadcrumb": {
"@type": "BreadcrumbList",
...
},
"video": {
"@type": "VideoObject",
...
},
...
}]
【问题讨论】:
标签: seo schema.org json-ld