Application.cfc图像映射

时间:2017-08-30 16:19:23

标签: coldfusion cfml

这可能很简单,但我正在努力。

如果在我的application.cfc中,我在下面

this.mappings = { "/foo" = expandPath('gfx/')

我想在提取图像时调用所述目录

<img src="/foo/test.jpg" width="90" height="90" />

为什么不起作用?

1 个答案:

答案 0 :(得分:5)

ColdFusion映射仅适用于ColdFusion代码。标记为cfincludecfmodulecalling CFCs等。您尝试使用它的是HTML img src属性,该属性需要绝对或相对URL。如果您想要类似的功能,请查看在您的Web服务器上创建virtual directory

当然,ColdFusion允许您在building that URLpushing an image to the browser中执行许多其他操作,但我认为这可以在此处回答您的具体问题。