【发布时间】:2015-10-22 02:53:55
【问题描述】:
有人能发现我下面的代码有什么问题吗? (它在 Google 结构化测试工具中无效。)我正在尝试创建 JSON-LD 代码以添加到包含多种待售产品的页面。
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@graph": [
{
"@type": “Product”,
"name": “tshirt",
“description”: "test copy 1.”,
“image”: “image.jpg”
},
{
"@type": “Product”,
"name": “tshirt 2",
“description”: "test copy 2.”,
“image”: “image2.jpg”
}
]
}
</script>
非常感谢任何帮助!
【问题讨论】:
标签: seo json-ld structured-data