在XSLT 1.0中转换时编码
我正在转换为HTML存储在XML中的多项选择测验...答案包括html标记:
用于创建输入字段集合的HTML标记是什么?
a)<collection>
b)<套索>
c)<fieldset>
d)不存在这样的标签
问题在于,文本是在XML中编码的;
<multiple_choice>
<question>
<p style="font-weight: bold">What is the HTML tag used to create a collection of input fields?</p>
</question>
<choice value="V1"><collection></choice>
<choice value="V2"><lasso/> </choice>
<choice value="V3"><fieldset></choice>
<choice value="V4">No such tag exists</choice>
</multiple_choice>
...当它被渲染的时候,它已经被编码,并且问题在屏幕上显示,a,b和c为空白,字段集围绕着d:
我在Stack上发现了这个,用最微小的一点修饰它,然后使用它:
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<!-- Replace < encoding "<"" with double encoded string "&lt;" -->
<xsl:template match="choice/text()">
<xsl:variable name="newtext">
<xsl:call-template name="string-replace">
<xsl:with-param name="string" select='.' />
<xsl:with-param name="from" select='"<"' />
<xsl:with-param name="to" select='"&lt;"' />
</xsl:call-template>
</xsl:variable>
<xsl:value-of select="$newtext"/>
</xsl:template>
如果我想将“fieldset”改为“monkey”,但如果我想改变<,那么我就不会改变。
我用&lt;和&lt; 并没有工作。
无论是使用这种方法还是其他方法,如何防止&lt; 和&gt; 从渲染之前的解码?
更新1
字符串替换是非常传统的,但我应该考虑包括它:
<xsl:template name="string-replace" >
<xsl:param name="string" />
<xsl:param name="from" />
<xsl:param name="to" />
<xsl:choose>
<xsl:when test="contains($string,$from)"> <xsl:value-of select="substring-before($string,$from)"/><xsl:value-of select="$to"/> <xsl:call-template name="string-replace"> <xsl:with-param name="string" select="substring-after($string,$from)"/> <xsl:with-param name="from" select="$from"/> <xsl:with-param name="to" select="$to"/> </xsl:call-template>
</xsl:when>
<xsl:otherwise> <xsl:value-of select="$string"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
更新2
小小的尤里卡时刻......我将“从”字符串改为“&amp; lt;” 它能够找到它......这很棒,如果我想要,我可以轻易地将它改为“[”...
但是,我无法将其更改为&lt; ...或甚至&lt; amp; amp; lt; ...无论出于何种原因,xsl将遍历任意数量的编码,并返回未编码的小于
更新3
我在浏览器上收到的实际源代码是:
<p style="font-weight: bold">What is the HTML tag used to create a collection of input fields?</p>
<input type="radio" value="V1"/><choice value="V1"><collection></choice><br/>
<input type="radio" value="V2"/><choice value="V2"><lasso></choice><br/>
<input type="radio" value="V3"/><choice value="V3"><fieldset></choice><br/>
<input type="radio" value="V4"/><choice value="V4">No such tag exists</choice><br/>
我希望通过浏览器接收的来源是:
<p style="font-weight: bold">What is the HTML tag used to create a collection of input fields?</p>
<input type="radio" value="V1"/><choice value="V1"><collection></choice><br/>
<input type="radio" value="V2"/><choice value="V2"><lasso></choice><br/>
<input type="radio" value="V3"/><choice value="V3"><fieldset></choice><br/>
<input type="radio" value="V4"/><choice value="V4">No such tag exists</choice><br/>
你的问题很混乱。 如果这是您的XML输入:
<multiple_choice>
<question>
<p style="font-weight: bold">What is the HTML tag used to create a collection of input fields?</p>
</question>
<choice value="V1"><collection></choice>
<choice value="V2"><lasso/> </choice>
<choice value="V3"><fieldset></choice>
<choice value="V4">No such tag exists</choice>
</multiple_choice>
为什么有必要更换任何东西? Yoi没有发布预期的HTML代码,但作为一个例子,应用这个样式表:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" version="1.0" encoding="utf-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="choice">
<input type="radio" value="{@value}">
<xsl:value-of select="."/>
</input><br/>
</xsl:template>
</xsl:stylesheet>
会产生以下结果 :
<multiple_choice>
<question>
<p style="font-weight: bold">What is the HTML tag used to create a collection of input fields?</p>
</question>
<input type="radio" value="V1"><collection></input>
<br/>
<input type="radio" value="V2"><lasso/> </input>
<br/>
<input type="radio" value="V3"><fieldset></input>
<br/>
<input type="radio" value="V4">No such tag exists</input>
<br/>
</multiple_choice>
呈现为:
链接地址: http://www.djcxy.com/p/87627.html