我用的是rails 4应用的refile。
我收到错误:undefined method接受附件`
我正在尝试多个图像上传,有两个模型:书籍和blob。
我的书RB:

has_many :blobs, dependent: :destroy
accepts_attachments_for :blobs

我的博客RB:
belongs_to :book
attachment :file

如果我检查rake路由,它显示已安装了refile,那么问题是什么?

最佳答案

这里讨论了您要使用的功能:https://github.com/refile/refile/issues/6,它似乎还没有发布。如果你想使用它,你需要使用主分支。您可以通过更改gemfile来尝试使用master分支:

gem 'refile', require: "refile/rails", git: 'https://github.com/refile/refile.git', branch: 'master'

10-06 08:56