我正在使用带有rails 4 app的Refile。
我收到错误:undefined method
accepts_attachments_for'`
我尝试多张图片上传,并有两种模式:书籍和blob。
我的书.rb:
has_many :blobs, dependent: :destroy
accepts_attachments_for :blobs
我的blobs.rb:
belongs_to :book
attachment :file
如果我检查rake路由,它会显示已安装refile,那么问题是什么?
答案 0 :(得分:6)
您要使用的功能在此处讨论:https://github.com/refile/refile/issues/6并且它似乎尚未发布。如果要使用它,则需要使用master分支。您可以通过更改Gemfile来尝试使用master分支:
gem 'refile', require: "refile/rails", git: 'https://github.com/refile/refile.git', branch: 'master'