2013-06-03 88 views

回答

4

如果您存儲圖像/公/ images文件夾,您可以在視圖文件中使用這樣的:當你映射公用文件夾

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

這將產生/assets/images/image.jpg URL源IMG/assets/*文件在路徑文件中:

# Map static resources from the /public folder to the /assets URL path 
GET  /assets/*file    controllers.Assets.at(path="/public", file) 
相關問題