如何使用XSLT映射删除xsi:type =“xsd:string”&xsi:nil =“true”?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用XSLT映射删除xsi:type =“xsd:string”&xsi:nil =“true”?相关的知识,希望对你有一定的参考价值。
我正在研究SAP NW PI(流程集成),目前我们使用SOAP从第三方系统获得入站Payload,Payload类似于
<GetReportBlock_C4C_-_Pre_Call_Preparation_Part2Response xmlns="C4C_Pre_Call_Preparation_Part2">
<headers>
<row>
<cell xsi:type="xsd:string">Account</cell>
<cell xsi:type="xsd:string">Product Group - Key</cell>
<cell xsi:type="xsd:string">Product Group - Medium Text</cell>
<cell xsi:type="xsd:string">Gross Sales (USD)</cell>
</row>
</headers>
<table>
<row>
<cell xsi:type="xsd:string" xsi:nil="true"/>
<cell xsi:type="xsd:string" xsi:nil="true"/>
<cell xsi:type="xsd:string" xsi:nil="true"/>
<cell xsi:type="xsd:double" xsi:nil="true"/>
</row>
</table>
<user>XXX</user>
<documentation>C4C - Pre Call Preparation_Part2</documentation>
<documentname>C4C Pre Call Preparation - Part_2</documentname>
<lastrefreshdate>2018-06-08T10:21:41.0</lastrefreshdate>
<creationdate>2018-05-29T10:33:25.438</creationdate>
<creator>XXX</creator>
<isScheduled>XXX</isScheduled>
<tableType>XXXX</tableType>
<nbColumns>X/nbColumns>
<nbLines>X</nbLines>
</GetReportBlock_C4C_-_Pre_Call_Preparation_Part2Response>
名称空间应该在每个元素上都有前缀ns0的第一个问题。使用下面的XSLT Mapping修复了这个问题
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="C4C_Pre_Call_Preparation_Part2">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:element name="ns0:{name()}" namespace="C4C_Pre_Call_Preparation_Part2">
<xsl:copy-of select="namespace::*"/>
<xsl:apply-templates select="node()|@*"/, how should i accomplish this.
>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
现在我的问题是从元素中删除xsi属性,我该如何实现?
答案
要删除所有xsi:
属性,您可以使用匹配它的空模板
<xsl:template match="@xsi:*" />
但是XML / XSLT还存在其他问题:
- 命名空间不是绝对的,因此,例如,将命名空间更改为类似
http://C4C_Pre_Call_Preparation_Part2
。 - 你的
<xsl:element name="ns0:{name()}" ...>
应该使用local-name()
而不是name()
。 - 您忘了为
xsi
前缀指定名称空间。通常使用xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
。
以上是关于如何使用XSLT映射删除xsi:type =“xsd:string”&xsi:nil =“true”?的主要内容,如果未能解决你的问题,请参考以下文章