4

我正在使用mailboxer gem,但我不知道如何将它与Paperclip(消息类)一起使用。

将 Paperclip 与 User 类一起使用是:

class User < ActiveRecord::Base
  has_attached_file :picture
end

如何将 has_attached_file 添加到 Message 类(模型中没有 message.rb)?

谢谢你。

4

1 回答 1

2

两种解决方案:

  • 使用由载波制作的内置附件(来源

  • 猴子补丁Message模型:

在初始化程序中执行:

Message.class_eval do

  #your paperclip code goes here

end

不要忘记迁移

于 2012-08-30T14:36:16.243 回答