Displaying a Carrierwave filename in the view

前端 未结 10 1125
暖寄归人
暖寄归人 2020-12-13 23:29

I am trying to display the filename of a Carrierwave attachment in a Rails erb template. The following does not work:

<%= @page.form.filename %>
         


        
10条回答
  •  再見小時候
    2020-12-14 00:08

    @adamonduty's solution is great. Another solution I used before, just create a method on the model:

    def name
      file.path.split("/").last
    end
    

提交回复
热议问题