Answers for "image url rails view"

1

rails activestorage get image url

Rails.application.routes.url_helpers.rails_blob_path(record.image, only_path: true)
Posted by: Guest on July-23-2021
2

rails image tag

<%= image_tag 'icon.png', alt: 'icon' %>
# => <img src='app/assets/images/icon.png' alt='icon' />
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language