我在 Saxon-HE 9.8 中使用 XSLT 3.0 并希望将 JSON 文档作为JSON-LD中的链接数据使用。在 JSON-LD 中,完整的 HTTP URI 通常显示为值。
当我使用 XPath 3.1fn:serialize
将数据往返返回到 JSON 时,其中的固线字符http://
被转义。序列化回 JSON 时是否可以避免这种转义?
该fn:parse-json
函数有一个escape
可以设置为true()
or的参数false()
,但我没有看到任何类似的fn:serialize
.
我可以使用 删除转义字符fn:replace
,但想知道是否有一种我缺少的内置方法可以做到这一点。
示例样式表:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:array="http://www.w3.org/2005/xpath-functions/array"
xmlns:map="http://www.w3.org/2005/xpath-functions/map"
xmlns:output="http://www.w3.org/2010/xslt-xquery-serialization"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">
<xsl:output omit-xml-declaration="yes"/>
<xsl:variable name="j" expand-text="no"> { "@context": "http://schema.org" } </xsl:variable>
<xsl:template name="init">
<xsl:sequence
select="
$j => parse-json(map {'escape': false(), 'liberal': true()})
=> serialize(map {'method': 'json'})
=> replace('\\/', '/')
"/>
</xsl:template>
</xsl:stylesheet>
没有fn:replace
,结果是{"@context":"http:\/\/schema.org"}
。有了fn:replace
,结果就是{"@context":"http://schema.org"}
。