Rails + CarrierWave: NoMethodError: undefined method `name' for nil:NilClass

后端 未结 6 520
挽巷
挽巷 2021-01-18 02:19

I am using CarrierWave with Rails 3.1. I am getting the following error message when I submit the form (trying to upload an image):

Error Message:

Ac         


        
6条回答
  •  情歌与酒
    2021-01-18 02:49

    Make sure in your model:

    mount_uploader :image, ImageLoader
    

    Remember that :image must be the string/text type.

提交回复
热议问题