ที่ไหนดีที่สุดในการวางมาร์กอัป Schema.org ที่ใช้ JSON-LD บางคนแนะนำภายใน<head>
แต่สคริปต์ทำงานแบบอินไลน์เช่นกัน มันจะง่ายกว่าใน MVC ที่จะวางไว้ในขอบเขตเดียวกับคอนโทรลเลอร์ดังนั้นนั่นหมายถึงอินไลน์ใกล้กับองค์ประกอบ แต่ JSON-LD อาจจะ "ทำงานดีกว่า" เป็นสคริปต์ขนาดใหญ่หนึ่ง / <head>
สแต็คใน ฉันไม่แน่ใจในทำเลที่ดีที่ฉันคิด
ตัวอย่างจะเป็น breadcrumbs - ฉันควรใส่สคริปต์ JSON-LD หน้ามาร์กอัพสำหรับ crumbs หรือฉันควรจะผ่านปัญหาทั้งหมดของการโหลดแบบจำลอง (อีกครั้ง) เพื่อกำหนดไว้ในพื้นที่ที่สร้าง<head>
? ดูเหมือนว่ามันจะเป็นผลงานการแสดง แต่ถ้ามันคุ้มค่ากับสเป็คแล้วก็ต้องทำ
นี่คือตัวอย่างขององค์กรใน JSON-LD (ซึ่งจะมี<head>
อยู่แล้ว):
<script type="application/ld+json"> {
"@context" : "http://schema.org",
"@type" : "Organization",
"name" : "A Huge Corporation",
"url" : "http://www.example.com",
"logo" : "http://www.example.com/huge-corporation.png",
"founder" : "Humanz",
"foundingDate" : "1268",
"sameAs" : "http://plus.google.com/111111111111111111111",
"contactPoint" : {
"@type" : "ContactPoint",
"contactType" : "Customer Service",
"telephone" : "+1-888-888-8888",
"faxNumber" : "+1-777-777-7777",
"contactOption" : "TollFree",
"areaServed" : "US",
"availableLanguage" : "English",
"email" : "dude@example.com"
},
"hasPos" : {
"@type" : "Place",
"name" : "The Branch or Store",
"photo" : "http://www.example.com/store.png",
"hasMap" : {
"@type" : "Map",
"url" : "https://maps.google.com/maps?q=feed_me_a_map"
},
"address" : {
"@type" : "PostalAddress",
"name" : "The Branch or Store",
"streetAddress" : "1547 Main Street",
"addressLocality" : "Beverly Hills",
"addressRegion" : "CA",
"postalCode" : "90210",
"addressCountry" : "United States"
}
}}
</script>
และนี่คือส่วนย่อยของเกล็ดขนมปัง (ปัจจุบันอยู่ในขอบเขตอื่นไกลลงไปที่หน้าใกล้กับเศษที่แสดงผลทางสายตา) จะดีที่ได้รับนี้ในหัวถ้างานมีค่า:
<script type="application/ld+json"> {
"@context" : "http://schema.org",
"@type" : "Breadcrumblist",
"itemListElement" : [
{
"@type" : "ListItem",
"position" : 1,
"item" : {
"@id" : "http:www.example.com",
"name" : "Home"
}
},
{
"@type" : "ListItem",
"position" : 2,
"item" : {
"@id" : "http:www.example.com/widgets",
"name" : "Widgets"
}
},
{
"@type" : "ListItem",
"position" : 3,
"item" : {
"@id" : "http:www.example.com/widgets/green",
"name" : "Green Widgets"
}
}
]}
</script>