-1
下面是我的XML輸入屬性問題
<ServiceIncident xmlns="http://b2b.ibm.com/schema/IS_B2B_CDM/R2_2">
<ServiceProvider>
<Person Role="AffectedUser">
<ContactID>ITELLA_BRIDGE_USER</ContactID>
<FullName>Chad Whaley</FullName>
</Person>
</ServiceProvider>
在人稱角色輸出我需要得到角色到位AffectedUser在上面的代碼的作用是person.Below的屬性我的XSLT
xmlns:r2="http://b2b.ibm.com/schema/IS_B2B_CDM/R2_2">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="r2:[email protected]">
<xsl:copy>Owner</xsl:copy>
</xsl:template>
</xsl:stylesheet>
看來你問是一個很基本的問題。根據你的示例XSLT,你似乎還沒有掌握基本的語法。先嚐試學習基礎知識。 –
「*在人物角色的輸出中,我需要在上面的代碼中獲取角色來代替AffectedUser角色是人物的屬性。*」您能否重新解釋這個問題?我不確定你的意思。顯示所需的輸出也可能有幫助。另請注意,您的輸入XML缺少結尾部分,而您的XSLT缺少起始部分。 –