从XML到XSLT一对一mapping的XSLT模板
发布时间:2020-12-15 22:45:18 所属栏目:百科 来源:网络整理
导读: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="
<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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |