我想更改此 xml 格式
从这个 xml 节点:
<Loan>
<accountNumber>111111</accountNumber>
</Loan>
<Loan>
<accountNumber>222222</accountNumber>
</Loan>
到这个 xml 节点:
<HBItems>
<HBItem>
<Properties>
<Property>
<Code>LOAN_IDT</Code>
<Value>111111</Value>
</Property>
<Property>
<Code>LOAN_NUMBER</Code>
<Value>111111</Value>
</Property>
</Properties>
</HBItem>
<HBItem>
<Properties>
<Property>
<Code>LOAN_IDT</Code>
<Value>222222</Value>
</Property>
<Property>
<Code>LOAN_NUMBER</Code>
<Value>222222</Value>
</Property>
</Properties>
</HBItem>
</HBItems>
您能帮我使用 apply-template 实现结果吗?非常感谢您对这个问题的帮助。