如何从 rails image_tag 仅获取图像 src 属性?
Posted
技术标签:
【中文标题】如何从 rails image_tag 仅获取图像 src 属性?【英文标题】:How to get only image src attribute from rails image_tag? 【发布时间】:2021-12-21 09:07:28 【问题描述】:我有一个场景,我只需要image_tag
生成的src
属性。
ActionController::Base.helpers.image_tag("diane.png")
回馈
<img src=\"/assets/diane-d88012c06a724682b02dfbd9224dbaac15872a3.png\" alt=\"Diane\" />
我只需要src
属性中的字符串。
【问题讨论】:
【参考方案1】:你可以使用image_path:
ActionController::Base.helpers.image_path("diane.png")
【讨论】:
正是我想要的。谢谢以上是关于如何从 rails image_tag 仅获取图像 src 属性?的主要内容,如果未能解决你的问题,请参考以下文章
Rails link_to image_tag - 使用 jQuery 获取点击时的 href 值
使用 image_tag 显示通过 CarrierWave 上传的图像