ActiveRecord :: UnknownAttributeError [英] ActiveRecord::UnknownAttributeError

查看:75
本文介绍了ActiveRecord :: UnknownAttributeError的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建带有某些字段的酒店,其中一个字段是照片,我想使用通过carrierwave和nested_form上传的多个文件.我发现了这文章 并得到一些结果.

I'm trying to create hotel with some fields, one of the fields is photo, i want to use multiple files upload with carrierwave and nested_form. I found this article and have some result.

当我在/hotels/new 上时,填写字段,选择相片 然后按提交,在HotelsController中创建 ActiveRecord :: UnknownAttributeError#创建未知属性:attachable_type. 控制台

When i'm on /hotels/new, filling fields, choosing photos and press submit, getting ActiveRecord::UnknownAttributeError in HotelsController#create unknown attribute: attachable_type. Console

Started POST "/hotels" for 127.0.0.1 at 2013-09-27 17:35:18 +0300
Processing by HotelsController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"+1T2tuygSnj8unOKkXkRWI4L7KvDE
9PPHrqvag7KmIQ=", "hotel"=>{"title"=>"dsa", "address"=>"asd", "star_rating"=>"2"
, "breakfast"=>"Not include", "price_for_room"=>"sadas", "room_description"=>"Gr
eat room", "attachments_attributes"=>{"1380289954031"=>{"file"=>#<ActionDispatch
::Http::UploadedFile:0xa5d546c @original_filename="11374.jpg", @content_type="im
age/jpeg", @headers="Content-Disposition: form-data; name=\"hotel[attachments_at
tributes][1380289954031][file]\"; filename=\"11374.jpg\"\r\nContent-Type: image/
jpeg\r\n", @tempfile=#<File:/tmp/RackMultipart20130927-7077-50zkol>>, "_destroy"
=>"false"}, "1380289972216"=>{"file"=>#<ActionDispatch::Http::UploadedFile:0xa5d
53a4 @original_filename="357175.jpg", @content_type="image/jpeg", @headers="Cont
ent-Disposition: form-data; name=\"hotel[attachments_attributes][1380289972216][
file]\"; filename=\"357175.jpg\"\r\nContent-Type: image/jpeg\r\n", @tempfile=#<F
ile:/tmp/RackMultipart20130927-7077-dlkmwk>>, "_destroy"=>"false"}}}, "commit"=>
"Done"}
Completed 500 Internal Server Error in 109ms

ActiveRecord::UnknownAttributeError (unknown attribute: attachable_type):
  app/controllers/hotels_controller.rb:15:in `new'
  app/controllers/hotels_controller.rb:15:in `create' 
...

模型hotel.rb

class Hotel < ActiveRecord::Base
  attr_accessible :address, :breakfast, :price_for_room, :room_description,
                :star_rating, :title, :attachments_attributes

  has_many :attachments, :as => :attachable
  accepts_nested_attributes_for :attachments
end

模型附件.rb

class Attachment < ActiveRecord::Base
  attr_accessible :file  
  belongs_to :attachable, :polymorphic => true
  mount_uploader :file, FileUploader
end

hotels_controller.rb

...
      def new
        @hotel = Hotel.new
      end
      def create
        @hotel = Hotel.new(params[:hotel])
        if @hotel.save
          redirect_to hotels_path, notice: "Nice, you added new hotel " + @hotel.title
        else
          render "new"
        end  
      end

_form.rb

<%= nested_form_for @hotel, :html => {:multipart => true}  do |f| %>
  ...
  <%= f.fields_for :attachments do |attachment_form|%>    
    <%= attachment_form.label :file %>
    <%= attachment_form.file_field :file %>
    <%= attachment_form.link_to_remove "Remove this photo" %>
  <% end %>
  <%= f.link_to_add "Add photo", :attachments %>
  <%= f.submit 'Done', class: 'btn btn-success' %>
<% end %>

有什么想法的人吗?我在这里做什么错了?

Any ideas guys? What am I doing wrong here?

推荐答案

ActiveRecord :: UnknownAttributeError表示您缺少数据库中的字段.设置多态关系时,您似乎错过了一个字段,或者您忘记了运行迁移.

ActiveRecord::UnknownAttributeError means that you're missing a field in the database. Looks like you missed a field when you were setting up your polymorphic relationship, or you forgot to run your migrations.

另请参见: http://guides.rubyonrails.org/association_basics.html#polymorphic-associations

这篇关于ActiveRecord :: UnknownAttributeError的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆