我正在尝试对edifabric x12 XML文件进行简单的XSL转换。如何选择<D_744_1>
元素?
示例XML:
<INTERCHANGE xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="www.edifabric.com/x12">
<S_ISA>
<D_744_1>00</D_744_1>
</S_ISA>
</INTERCHANGE>
样本XSL: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<testfield><xsl:value-of select="INTERCHANGE/S_ISA/D_744_1" /></testfield>
</xsl:template>
</xsl:stylesheet>
结果:<?xml version="1.0" encoding="utf-8"?>
<testfield/>
预期的结果:
<?xml version="1.0" encoding="utf-8"?>
<testfield>00</testfield>
更新答案谢谢@ChriPf:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:edi="www.edifabric.com/x12" exclude-result-prefixes="edi">
<xsl:template match="edi:INTERCHANGE">
<testfield><xsl:value-of select="edi:S_ISA/edi:D_744_1" /></testfield>
</xsl:template>
</xsl:stylesheet>
您的解决方案可以像这样:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:edi="www.edifabric.com/x12">
<xsl:template match="edi:D_744_1">
<xsl:element name="testfield">
<xsl:copy-of select="." />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
如果xml中有默认名称空间,则必须在xsl中也定义它。