-2
使用play framework和scala如何使用靜態圖像作爲鏈接(使用js或html代碼)?如何使用play framework和scala添加圖像上的鏈接
使用play framework和scala如何使用靜態圖像作爲鏈接(使用js或html代碼)?如何使用play framework和scala添加圖像上的鏈接
如果您存儲圖像/公/ 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)