嗨,架构中的链接中的“\/\/”和“//”之间有什么区别吗?

Hi, are there any differences between "\/\/" and "//" in the links in schema?

schema中链接中的“\ / \ /”和“/ /”有区别吗?

<script type="application/ld+json">
    {
        "@context": "http:\/\/schema.org",
        "@type": "ContactPage",
        "url": "https:\/\/example.com\/contact"
    }   
</script>

或者只是

<script type="application/ld+json">
    {
        "@context": "http://schema.org",
        "@type": "ContactPage",
        "url": "https://example.com/contact"
    }   
</script>

没有 \ 转义字符串中的特殊字符,因此新行可以表示为 \n 或 \ 表示一个反斜杠,但 / 在这种情况下不需要转义,因此两个短语相同