3

我正在使用带有 rails 4 应用程序的 Refile。

我收到错误消息:undefined methodaccepts_attachments_for'`

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

我的书.rb:

has_many :blobs, dependent: :destroy
accepts_attachments_for :blobs

我的 blobs.rb:

belongs_to :book
attachment :file

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

4

1 回答 1

6

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

gem 'refile', require: "refile/rails", git: 'https://github.com/refile/refile.git', branch: 'master'
于 2015-07-04T01:13:28.427 回答