ld+json 脚本和剃刀视图的编译错误
Compilation Error with ld+json script and razor views
我正在尝试向我的站点添加一些 schema.org 内容,但 razor 视图引擎给我带来了麻烦。这是我要添加到我的主要布局中的内容:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.example.com",
"logo": "http://www.example.com/media.ashx/repzio-icon.png"
}
</script>
@context 是这里的问题,我该如何解决这个问题?
用@@
转义:
标记
<script type="application/ld+json">
{
"@@context": "http://schema.org",
"@@type": "Organization",
"url": "http://www.example.com",
"logo": "http://www.example.com/media.ashx/repzio-icon.png"
}
</script>
查看源代码
我正在尝试向我的站点添加一些 schema.org 内容,但 razor 视图引擎给我带来了麻烦。这是我要添加到我的主要布局中的内容:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"url": "http://www.example.com",
"logo": "http://www.example.com/media.ashx/repzio-icon.png"
}
</script>
@context 是这里的问题,我该如何解决这个问题?
用@@
转义:
标记
<script type="application/ld+json">
{
"@@context": "http://schema.org",
"@@type": "Organization",
"url": "http://www.example.com",
"logo": "http://www.example.com/media.ashx/repzio-icon.png"
}
</script>
查看源代码