繁体   English   中英

解析您的 JSON-LD 时出错

[英]There was an error parsing your JSON-LD

<script type="application/ld+json">
{ "@context" : "http://schema.org",
  "@type" : "Organization",
  "url" : "http://www.hstechsupport.com",
  "contactPoint" :
   [ { "@type" : "ContactPoint",
      "telephone" : "+1-866-606-2003",
      "contactType" : "Computer Technical Support",
      "contactOption" : "TollFree",
     "areaServed" : "US",
      "availableLanguage" : "English"
      }

      { "@type" : "ContactPoint",
      "telephone" : "+1-866-606-2003",
      "contactType" : "Computer Customer Service",
      "contactOption" : "TollFree",
      "areaServed" : "US",
      "availableLanguage" : "English"
      }

      { "@type" : "ContactPoint",
      "telephone" : "+1-866-606-2003",
      "contactType" : "Computer Customer Support Service",
      "contactOption" : "TollFree",
      "areaServed" : "US",
      "availableLanguage" : "English"
      } ]

    }
</script>

查看我的代码并让我离开那里。 帮我

你的 json 数据应该是:

{ "@context" : "http://schema.org", "@type" : "Organization", "url" : "http://www.hstechsupport.com", "contactPoint" : [
 { "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Technical Support", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" } 
,{ "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Customer Service", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" }, { "@type" : "ContactPoint", "telephone" : "+1-866-606-2003", "contactType" : "Computer Customer Support Service", "contactOption" : "TollFree", "areaServed" : "US", "availableLanguage" : "English" } ] }

你失踪了,

你可以在这里看看: http : //json.parser.online.fr/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM