0

我想将节点添加到我的 xml 数据并保持 CDATA 格式不变我有 xml 文件,我在其中编写 xml 内容,应该在我的 shablon xml 中复制这里是 xml contetn,应该添加到 shablon.xml

<?xml version="1.0" encoding="UTF-8"?><Data>
<RawData Format="Text">
<organizationNameEng>fgfgfg</organizationNameEng>
<organizationNameGeo>dfdfdf</organizationNameGeo>
<organizationIdentifier>123456789</organizationIdentifier>
<cardNumber>dfdfdf</cardNumber></RawData>
<response>
<id>0123</id>
<content>her  is  content</content>
</response>
</Data>

here  is  my  shablon xml 
<?xml version="1.0" encoding="UTF-8"?><DataPrep xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Lcid="String">
<Job Name="CompleteJob" Type="Normal" Priority="1">
<JobDetails>![CDATA[ here is  job  details ]]</JobDetails>
<DetailData>
<Information>
<RawData Format="Text"><</RawData>
</Data>
<response>
...
</response>
</Information>
</DetailData>
</Job>

这是我的 xlst

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0"
encoding="UTF-8" indent="yes" cdata-section-elements="RawData"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="node()|@*">
        <xsl:copy>
            <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="Detaildata/information">
        <xsl:copy>
            <xsl:copy-of select="document('content.xml')"/>
    </xsl:template>
        </xsl:copy>

</xsl:stylesheet>

这会给我这样的回应:

<?xml version="1.0" encoding="UTF-8"?><DataPrep xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Lcid="String">
<Job Name="CompleteJob" Type="Normal" Priority="1">
<JobDetails>&lt here is  job  details &gt</JobDetails>
<DetailData>
<Information>
<RawData Format="Text"><![CDATA[
<organizationName>fgfgfg</organizationNameEn>
<organizationIdentifier>123456789</organizationIdentifier>
<cardNumber>dfdfdf</cardNumber>
]]></RawData>
</Data>
</Information>
</DetailData>
</Job>
</DataPrep>

我应该如何更改我可以将标签粘贴到 ..]] 中的 xslt 文件,以及我应该如何避免 xslt 中的响应标签并且不在 这里更改<CDATA> 格式的情况 &gt &lt

<JobDetails>&lt here is  job  details &gt</JobDetails>
4

0 回答 0