前に言ったように、私はXSLTを学び始めました
私がそれに取り組んでいるとき、私は間違ったタイプのXMLフォーマットを取得します
入力
<?xml version="1.0" encoding="ISO-8859-1"?>
<testingconfig note-ref="no">
<access-panel>113AL</access-panel>
<access-panel>119AL</access-panel>
</testingcongif>
出力
<?xml version="1.0" encoding="ISO-8859-1"?>
<testingconfig>
<panel><panelid>113AL</panelid></panel>
<panel><panelid>119AL</panelid></panel>
</testingconfig>
私のXSL
<?xml version="1.0" encoding="ISO-8859-1"?>
<testingconfig>
<xsl:for-each select="testingconfig">
<panel>
<panelid>
<xsl:value-of select="*"/>
</panelid>
</panel>
</xsl:for-each>
</testingconfig>
このための出力は
<testingconfig>
<panel>
<panelid>
113AL 119AL
</panelid>
</panel>
</testingconfig>
誰かが私が間違いをしているここで私を助けてくれますか?plsはXSLT2.0でそれを行う方法を私に助けてくれます
plsは私を助けます
ありがとう&よろしくM