在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">&lt;collection&gt;</choice>
    <choice value="V2">&lt;lasso/&gt;   </choice>
    <choice value="V3">&lt;fieldset&gt;</choice>
    <choice value="V4">No such tag exists</choice>
  </multiple_choice>

...当它被渲染的时候,它已经被编码,并且问题在屏幕上显示,a,b和c为空白,字段集围绕着d:

XSL的结果

我在Stack上发现了这个,用最微小的一点修饰它,然后使用它:

<xsl:template match="node()|@*">
    <xsl:copy>
        <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
</xsl:template>

<!-- Replace < encoding "&lt;"" with double encoded string "&amp;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='"&lt;"' />
            <xsl:with-param name="to" select='"&amp;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">&lt;collection&gt;</choice><br/>
<input type="radio" value="V2"/><choice value="V2">&lt;lasso&gt;</choice><br/>
<input type="radio" value="V3"/><choice value="V3">&lt;fieldset&gt;</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">&lt;collection&gt;</choice>
    <choice value="V2">&lt;lasso/&gt;   </choice>
    <choice value="V3">&lt;fieldset&gt;</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">&lt;collection&gt;</input>
   <br/>
   <input type="radio" value="V2">&lt;lasso/&gt;   </input>
   <br/>
   <input type="radio" value="V3">&lt;fieldset&gt;</input>
   <br/>
   <input type="radio" value="V4">No such tag exists</input>
   <br/>
</multiple_choice>

呈现为:

在这里输入图像描述

链接地址: http://www.djcxy.com/p/87627.html

上一篇: encoded when transformed in XSLT 1.0

下一篇: groovy findAll expands &lt