如何使用 xslt 解码 html 字符串
我正在尝试使用 xslt 设计 RSS 提要的样式。我想显示存储在提要标签中的图像。问题是它被编码为在页面上显示为文本而不是被渲染。以下是部分字符串的示例。
1)。 <描述>
我必须向上面的字符串添加额外的编码才能使其在此处正确显示,下面的字符串是我将其直接粘贴到文本框中时的显示方式
2)。 #58;//buavhw.blu.livefilestore.com/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://buavhw.blu.livefilestore.com/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您在 xsl:value=of 标记中使用特殊属性,即
禁用输出转义=“是”
像这样使用:
I'd suggest you to use an especial property in xsl:value=of tag and that is
disable-output-escaping="yes"
use like this: