我正在尝试使用 Coldfusions CFimage 标签和Photoswipe。
我的问题是,Photoswipe 需要像这样设置图像:
<a class="swipeMe" rel="external" href="#myImage#">
<cfimage source="#myImage#" action="writeToBrowser" class="adaptImg ui-li-thumb">
</a>
所以我需要链接 href 和 cfimage 标记的 url。
如果我解析这个,img 源将是
src="/CFFileServlet/_cf_image/_cfimg5722874764512027443.PNG"
而链接href原来是:
href="coldfusion.image.Image@1adaa15"
这会破坏 photoswipe 插件,因为找不到图像。
问题:
Coldfusion8中有没有办法在href中显示实际的图像路径,以便图像可以链接到?
感谢帮助!