如何防止 saxon 在 xsl:result-document 生成的结果中转义 systemId
我正在使用
其中 $uri 包含一些非 ASCII 字符。我已经注册了一个 OutputURIResolver,当它在其解析(href,base)方法中接收到 href 时,该 href 已被 uri 转义。我可以以某种方式阻止这种情况吗?
I am producing a document using <xsl:result-document href="{$uri}"> ...
where $uri contains some non-ASCII characters. I've registered an OutputURIResolver, and when it receives the href in its resolve(href, base) method, the href has been uri-escaped. Can I prevent that somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,我认为你无法阻止这一点。我不确定为什么这样做,但 OutputURIResolver 的接口确实表明参数是 URI,并且 URI 中不能包含未转义的非 ASCII 字符。
No, I don't think you can prevent this. I'm not sure exactly why it's being done, but the interface for OutputURIResolver does say that the arguments are URIs, and you can't have unescaped non-ASCII characters in a URI.