xsltを使用して画像を出力したい。src属性はxmlノードから送信されます>
例
<images>
<![CDATA[/images/sample_image.png]]>
</images
私のxsltで、以下のコードで画像を出力しましたが、壊れた画像が表示されます。
<xsl:element name="img">
<xsl:attribute name="src"><xsl:value-of select="//images"></xsl:value-of></xsl:attribute>
</xsl:element>
しかし、srcをハードコーディングして画像を出力しようとすると、機能しました。
<xsl:element name="img">
<xsl:attribute name="src">/images/sample_image.png</xsl:attribute>
</xsl:element>
最初のコードが機能しなかった理由はありますか?