XSLT 将 URL 从相对附加到绝对
在我的 XML 文档中,我正在提取包含图像的
的内容。 XML 显示:
<img src="/templates_soft/images/facebook.png" alt="twitter" />
当我查看页面时,图像没有显示,因为它与原始页面不在同一路径。
我需要添加要显示的图像的其余 URL。类似 http://www.mypage.com/
的内容,以便图像从 http://www.mypage.com/templates_soft/images/facebook.png
显示有办法做到这一点吗?
In my XML document, I am pulling the content of a <TextBlock>
that contains images. The XML shows:
<img src="/templates_soft/images/facebook.png" alt="twitter" />
When I view the page, the image doesn't show up because it is not at the same path as the original page.
I need to add the rest of the URL for the images to display. Something like http://www.mypage.com/
so that the image displays from http://www.mypage.com/templates_soft/images/facebook.png
Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
其中名为
$imageBase
的 xsl:variable 被定义为包含必要的前缀(在您的情况下"http://www.mypage.com"< /代码>)。
这是一个完整的 XSLT 解决方案:
当此转换应用于以下 XML 文档时:
生成所需的正确结果:
Use:
where the xsl:variable named
$imageBase
is defined to contain the necessary prefix (in your case"http://www.mypage.com"
).Here is a complete XSLT solution:
when this transformation is applied on the following XML document:
the wanted, correct result is produced:
如果您使用 XSLT,则只需创建一个包含所需的整个 URL 的 XML,然后标记该 XSLT,使其包含指向 XML 文件中原始字段的“指针”。如果您要绑定到一个控件(如网格),您可以进行行绑定并在该点添加信息(如果这比 XSLT 更容易)。
If you go with XSLT, you simply create an XML that contains the entire URL as you desire, you then tag the XSLT up so it contains the "pointers" to the original fields in the XML file. If you are binding to a control, like a Grid, you can row bind and add the information at that point, if it is easier for you to do than XSLT.