我在Play中遇到图像问题。
这是我访问图片的方式
src="@routes.Assets.at("/images/logo-mobile-control-white.png/")"
当我从本地(localhost:9000
)访问时,它可以正常工作,但是当我从另一台计算机(http://10.253.3.243:9000
)访问时,图像不起作用。
以下是本地代码
img src =“/ assets // images / logo-mobile-control-white.png /”width =“180”height =“60”border =“0”title =“Mobile 控制“alt =”Logo Mobile 控制“
以下是服务器的代码
img src =“/ assets // images / logo-mobile-control-white.png /”width =“180”height =“60”border =“0”title =“Mobile Control”alt =“Logo Mobile控制“
就是一样
请帮帮我!
答案 0 :(得分:2)
只需使用此
即可src="@routes.Assets.at("images/logo-mobile-control-white.png")"
这将产生以下结果:
<image src="/assets/images/logo-mobile-control-white.png"/>