Rails 5, “nil is not a valid asset source”

后端 未结 4 2033
暗喜
暗喜 2021-02-12 09:56

I have just upgraded to Rails 5 and I have a weird issue while trying to show an image.

I have the exact code I had for Rails 4:

<%= image_tag article         


        
4条回答
  •  情歌与酒
    2021-02-12 10:25

    Try with this, you need to add unless condition in your code. You need to add below code

    <%= image_tag article.image_url(:thumb) unless article.image.blank? %>

提交回复
热议问题