0

我正在尝试为 xml 发布者创建一个 rtf 模板。在我的表中列出了一些不同的组。我想为每个组提供特殊的背景颜色。颜色信息将来自带有“GROUP_COLOR”标签的 xml。

通常,此代码在我的模板中完美运行:

<xsl:attribute xdofo:ctx="block" name="background-color">#FF420E</xsl:attribute>

当尝试从 xml 获取颜色值时,如下所示给出错误:

<xsl:attribute xdofo:ctx="block" name="background-color"><?GROUP_COLOR?></xsl:attribute>

我该如何克服这个问题?

4

1 回答 1

0

我找到如下解决方案:

<xsl:attribute xdofo:ctx="block" name="background-color">
    <xsl:value-of select="GROUP_COLOR"/>
</xsl:attribute>
于 2017-10-16T12:16:48.827 回答