使用播放框架和scala 如何将静态图片用作链接(使用js或html代码)?
答案 0 :(得分:4)
如果您将图像存储在/ public / images文件夹中您可以在视图文件中使用它:
<a href="http://www.google.com"><img src="@routes.Assets.at("images/image.jpg")"></a>
当您将公共文件夹映射到路径文件中的/ assets / *文件时,这将生成/assets/images/image.jpg源img的URL:
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)