重新提交 accepts_attachments_for 问题

Refile accepts_attachments_for issue

我将 Refile 与 rails 4 应用程序一起使用。

我收到错误:undefined methodaccepts_attachments_for'`

我正在尝试上传多张图片,并且有两种模型:书籍和 blob。

我的books.rb:

has_many :blobs, dependent: :destroy
accepts_attachments_for :blobs

我的blobs.rb:

belongs_to :book
attachment :file

如果我检查 rake routes,它显示 refile 已挂载,请问这是什么问题?

此处讨论了您要使用的功能:https://github.com/refile/refile/issues/6,它似乎尚未发布。如果你想使用它,你需要使用 master 分支。您可以通过更改 Gemfile 来尝试使用 master 分支:

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