我正在通过对它们应用单个xsl stylesheeet来转换多个文件夹中的多个xml文件。
此xsl需要使用document()
函数和URL relative
<xsl:variable name="jfsd">
<xsl:value-of select="document('C:\documents and settings\Desktop\BOPl.xml')//txml" />
</xsl:variable>
但是,我收到以下错误:
document('c:\documents and settings\Desktop\BOPl.xml')//txml" /> The function 'document()' is undefined.
答案 0 :(得分:0)
我会直接在变量元素上使用select。
请参阅我对此问题的回答:Transform XML with multiple XSL files
此外,我会将相对网址用于文档,而不是硬件编码的固定网址,这取决于操作系统。