我做了很多搜索,但我无法弄清楚如何准确使用模板。
我的输入数据名为DEBTORS.xml:
<?xml version="1.0" ?>
<eExact xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="eExact-Schema.xsd">
<Accounts>
<Account code=" 001" status="A" type="C">
<Name>Name</Name>
<Contacts>
<Contact default="1" gender="M" status="A">
<Note>Patient: 1</Note>
<FirstName></FirstName>
<Addresses>
<Address type="D" desc="">
<AddressLine1>Street</AddressLine1>
<AddressLine2></AddressLine2>
<AddressLine3></AddressLine3>
<PostalCode>0000 AA</PostalCode>
<City>'City</City>
<Country code="NL"/>
<Phone></Phone>
<Fax></Fax>
</Address>
</Addresses>
<Language code="NL"/>
<JobDescription>--</JobDescription>
<Phone></Phone>
<PhoneExt></PhoneExt>
<Fax></Fax>
<Mobile></Mobile>
<Email></Email>
<WebAccess>0</WebAccess>
</Contact>
</Contacts>
<Debtor number=" 1" code=" 1">
<Currency code="EUR"/>
</Debtor>
</Account>
</Accounts>
</eExact>
我的XSL名为Test.xsl
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Indentation in XSL -->
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<!-- Removing blank lines in XSL -->
<xsl:strip-space elements="*"/>
<!-- Identity rule -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<!-- special rules ... -->
<xsl:template match="Contact">
<xsl:copy>
<!--
Apply the attributes of the current node and the attributes of all
childs
-->
<xsl:apply-templates select="@* | child::node()[not(self::Note)]"/>
</xsl:copy>
<xsl:apply-templates select="Note"/>
</xsl:template>
</xsl:stylesheet>
通缉输出:
<?xml version="1.0" ?>
<eExact xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="eExact-Schema.xsd">
<Accounts>
<Account code=" 868" status="A" type="C">
<Name>Name</Name>
<Contacts>
<Contact default="1" gender="M" status="A">
<FirstName></FirstName>
<Addresses>
<Address type="D" desc="">
<AddressLine1>Street</AddressLine1>
<AddressLine2></AddressLine2>
<AddressLine3></AddressLine3>
<PostalCode>0000 AA</PostalCode>
<City>'City</City>
<Country code="NL"/>
<Phone></Phone>
<Fax></Fax>
</Address>
</Addresses>
<Language code="NL"/>
<JobDescription>--</JobDescription>
<Phone></Phone>
<PhoneExt></PhoneExt>
<Fax></Fax>
<Mobile></Mobile>
<Email></Email>
<WebAccess>0</WebAccess>
</Contact>
</Contacts>
<Note>Patient: 1</Note>
<Debtor number=" 1" code=" 1">
<Currency code="EUR"/>
</Debtor>
</Account>
</Accounts>
</eExact>
我的问题是我的XSL节点&#34; 注意&#34;作为一个接触的孩子来,但我希望它作为一个帐户的孩子。希望有人能帮助我?
答案 0 :(得分:3)
我的问题是,对于我的XSL,节点“Note”是一个孩子 联系,但我希望它是一个帐户的孩子。
那么,您需要<{>>排除来自Contact
,包含来Account
:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" version="1.0" omit-xml-declaration="yes" encoding="UTF-8" indent="yes"/>
<!-- Identity rule -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<!-- special rules ... -->
<xsl:template match="Contact">
<xsl:copy>
<!-- exclude Note -->
<xsl:apply-templates select="@* | node()[not(self::Note)]"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Account">
<xsl:copy>
<!-- include Note -->
<xsl:apply-templates select="@* | node() | Contacts/Contact/Note"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>