如何使用 xslt 解码 html 字符串

发布于 2024-09-05 15:23:00 字数 329 浏览 3 评论 0原文

我正在尝试使用 xslt 设计 RSS 提要的样式。我想显示存储在提要标签中的图像。问题是它被编码为在页面上显示为文本而不是被渲染。以下是部分字符串的示例。

1)。 <描述>

我必须向上面的字符串添加额外的编码才能使其在此处正确显示,下面的字符串是我将其直接粘贴到文本框中时的显示方式

2)。 #58;&#47;&#47;buavhw.blu.livefilestore.com&#47;y1ppCokLxFJSG2cmyPdvg...

如果我从预览窗口再次复制并粘贴它,它只会变成以下字符串。

3)。 <描述>

I am trying to style an rss feed using xslt. I want to display an image that is stored in the tag on the feed. The problem is it is encoded to display as text on the page instead of being rendered. The following is an example of part of the string.

1). <description><img src="http&#58;&#47;&#47;buavhw.blu.livefilestore.com&#47;y1ppCokLxFJSG2cmyPdvg...

I had to add extra coding to the string above to get it to appear properly here. The string below is how it appears when I paste it directly into the text box.

2). <description><img src="http://buavhw.blu.livefilestore.com/y1ppCokLxFJSG2cmyPdvg...

If I copy and paste it again from the preview window it only then becomes the following string.

3). <description><img src="http://buavhw.blu.livefilestore.com/y1ppCokLxFJSG2cmyPdvg...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零度℉ 2024-09-12 15:23:00

我建议您在 xsl:value=of 标记中使用特殊属性,即
禁用输出转义=“是”
像这样使用:

<xsl:value-of select="description" disable-output-escaping="yes"/>

I'd suggest you to use an especial property in xsl:value=of tag and that is
disable-output-escaping="yes"
use like this:

<xsl:value-of select="description" disable-output-escaping="yes"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文