如何从 rails image_tag 中只获取图像 src 属性?

How to get only image src attribute from rails image_tag?

我有一个场景,我只需要 image_tag 生成的 src 属性。

ActionController::Base.helpers.image_tag("diane.png")

回馈

<img src=\"/assets/diane-d88012c06a724682b02dfbd9224dbaac15872a3.png\" alt=\"Diane\" />

我只需要 src 属性中的字符串。

您可以使用 image_path:

 ActionController::Base.helpers.image_path("diane.png")