-2

使用play framework 和 scala如何使用静态 图像作为链接(使用 js 或 html 代码)?

4

1 回答 1

4

如果您将图像存储在 /public/images 文件夹中,您可以在视图文件中使用它:

<a href="http://www.google.com"><img src="@routes.Assets.at("images/image.jpg")"></a>

当您将公共文件夹映射到路由文件中的 /assets/*file 时,这将为源 img 生成 /assets/images/image.jpg URL:

# Map static resources from the /public folder to the /assets URL path
GET     /assets/*file               controllers.Assets.at(path="/public", file)
于 2013-06-03T12:34:56.057 回答