2023-08-23 09:29PM
参考:https://stackoverflow.com/questions/39746936/rails-how-to-convert-img-src-to-image-tag-in-rails-app
<img src = >代码是这样的:
<img src="/assets/rand_front/<%= @random_image%>", style='height:50vw;width:100vw;margin-bottom:20px;' >
转换为image_tag代码:
<%= image_tag "rand_front/#{@random_image}", style: 'height:50vw;width:100vw;margin-bottom:20px;' %>
image_tag
将自动添加 assets
在路径的起点
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论