我有一个包含很多照片的属性模型。我正在尝试使用refile gem上传图像。

class Property < ActiveRecord::Base
  has_many :photos, :dependent => :destroy
  accepts_attachments_for :photos, attachment: :file
end

class Photo < ActiveRecord::Base
  belongs_to :property
  attachment :file
end


这是schema.rb的照片部分

  create_table "photos", force: :cascade do |t|
    t.integer  "property_id"
    t.string   "file"
    t.datetime "created_at",  null: false
    t.datetime "updated_at",  null: false
  end


这是创建新属性表格(slim)的相关部分

.form
  = form_for @property do |property|
    .file_upload
        = property.attachment_field :photos_files, multiple: true
        = property.label :photos_files

      = property.submit


这是属性控制器

class PropertiesController < ApplicationController
  def new
    @property = Property.new
  end

  def create
    @property = Property.new(property_params)
    if @property.save!
      redirect_to @property
    else
      render 'new'
    end
  end

  private

  def property_params
    params.require(:property).permit(:attributes.... photos_files: [])
  end
end


提交表格后,出现以下错误。

NoMethodError (undefined method `file_id_will_change!' for #<Photo:0x007f96e8532560>):


挠了一下头后,我看不到我在搞砸。

最佳答案

因此,在查看随附的示例应用程序中的迁移文件之后,我看到需要更多的模型属性。来自Carrierwave,给我的印象是Refile很相似,只在字符串列中写入数据库的文件路径。

在该模式的摘录中,您可以看到Refile存储数据的方式有所不同。

create_table "documents", force: :cascade do |t|
    t.integer "post_id",           null: false
    t.string  "file_id",           null: false
    t.string  "file_filename",     null: false
    t.string  "file_size",         null: false
    t.string  "file_content_type", null: false
  end


添加新属性后,上传器可以正常运行。

08-04 10:30