Questions tagged «json-ld»

3
Schema.org-JSON-LD-放置在哪里?
我正在寻找将JSON-LD用于网站上的架构。(模式表示schema.org数据。)我知道如何编写数据,但是我的问题是代码中是否存在插入此数据的首选位置?换句话说,如果JSON-LD总是在head,body等?

2
最佳JSON-LD做法:使用多个<script>元素?
我很好奇将JSON-LD应用于schema.org网站的最佳实践。 如果我有一个带有的页面,Article并且我也想WebSite在页面上进行定义,则需要这样: &lt;script type="application/ld+json"&gt; { "@context": "http://schema.org", "@type": "WebSite", "url": "http://www.example.com/", "potentialAction": { "@type": "SearchAction", "target": "http://www.example.com/search?&amp;q={query}", "query-input": "required" } } &lt;/script&gt; &lt;!- … --&gt; &lt;script type="application/ld+json"&gt; { "@context": "http://schema.org", "@type": "Article", "author": "John Doe", "interactionCount": [ "UserTweets:1203", "UserComments:78" ], "name": "How to Tie a Reef Knot" } &lt;/script&gt; 这是正确还是错误?是否有任何好处或需要将它们合并到相同的脚本或项目数组中?
71 html  seo  schema.org  json-ld 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.