从XML到XSLT一对一mapping的XSLT模板

前端之家收集整理的这篇文章主要介绍了从XML到XSLT一对一mapping的XSLT模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
						<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
						 <xsl:output method="xml" encoding="utf-8" indent="yes" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"/>


					 <xsl:template match="CustomerAccount">
						     <xsl:copy-of select="//CustomerAccount" />
						 </xsl:template>
						
						</xsl:stylesheet>
						


对应的XML结构:


<CustomerAccountInput messageName='CreateCustomer' >
<CustomerAccount>
...
</CustomerAccountInput>
</CustomerAccount>


online工具:

http://xslt.online-toolz.com/tools/xslt-transformation.PHP

原文链接:https://www.f2er.com/xml/298613.html

猜你在找的XML相关文章