ruby-on-rails – Rails has_many:通过PG ::错误:错误:列引用“id”是模糊错误

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails has_many:通过PG ::错误:错误:列引用“id”是模糊错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是rails的新手,我一直在尝试获得两个has_many:虽然关系可以解决(而不是像本文 http://blog.flatironschool.com/post/35346328762/why-you-dont-need-has-and-belongs-to-many所解释的那样使用has_and_belongs_to_many),但现在遇到了Postgres错误
  1. PG::Error: ERROR: column reference "id" is ambiguous
  2. LINE 1: ...on_id" IS NULL AND "components"."id" = 1 ORDER BY id ASC LIM...
  3. ^
  4. : SELECT 1 AS one FROM "components" INNER JOIN "collection_components" ON "components"."id" = "collection_components"."component_id" WHERE "collection_components"."collection_id" IS NULL AND "components"."id" = 1 ORDER BY id ASC LIMIT 1
  5. Rendered collections/_form.html.haml (117.0ms)
  6. Rendered collections/new.html.haml within layouts/application (143.5ms)
  7. Completed 500 Internal Server Error in 164ms
  8.  
  9. ActiveRecord::StatementInvalid - PG::Error: ERROR: column reference "id" is ambiguous
  10. LINE 1: ...on_id" IS NULL AND "components"."id" = 1 ORDER BY id ASC LIM...
  11. ^

_form.html.haml

  1. = form_for @collection do |f|
  2. - if @collection.errors.any?
  3. #error_explanation
  4. %h1= "#{pluralize(@collection.errors.count,"error")} prohibited this collection from being saved:"
  5. %ul
  6. - @collection.errors.full_messages.each do |msg|
  7. %li= msg
  8.  
  9. .field
  10. - Component.all.each do |component|
  11. = label_tag :component_ids,component.id
  12. = check_Box_tag :component_ids,component.id,@collection.components.include?(component),:name => 'collection[component_ids][]'
  13. .field
  14. = f.label :title
  15. = f.text_field :title
  16. .actions
  17. = f.submit 'Save'

collection_component.rb

  1. class CollectionComponent < ActiveRecord::Base
  2. attr_accessible :collection_id,:component_id
  3.  
  4. belongs_to :collection
  5. belongs_to :component
  6. end

collection.rb

  1. class Collection < ActiveRecord::Base
  2. default_scope order('id ASC')
  3.  
  4. attr_accessible :style_id,:name,:title,:component
  5.  
  6. #has_and_belongs_to_many :components
  7.  
  8. has_many :collection_components,:dependent => :destroy
  9. has_many :components,:through => :collection_components
  10.  
  11. belongs_to :style
  12.  
  13. validates_presence_of :style
  14. validates_presence_of :title
  15.  
  16. before_save :create_name
  17.  
  18. private
  19.  
  20. def create_name
  21. self.name = title.parameterize
  22. end
  23. end

component.rb

  1. class Component < ActiveRecord::Base
  2. default_scope order('id ASC')
  3.  
  4. attr_accessible :category_id,:collection,:style
  5.  
  6. has_many :collection_components,:dependent => :destroy
  7. has_many :collections,:through => :collection_components
  8.  
  9. has_many :component_styles
  10. has_many :styles,:through => :component_styles
  11.  
  12. belongs_to :category
  13.  
  14. validates_presence_of :category
  15. validates_presence_of :title
  16.  
  17. before_save :create_name
  18.  
  19. private
  20.  
  21. def create_name
  22. self.name = title.parameterize
  23. end
  24. end

collection_components表

  1. Column | Type | Modifiers
  2. ---------------+-----------------------------+--------------------------------------------------------------------
  3. id | integer | not null default nextval('collection_components_id_seq'::regclass)
  4. collection_id | integer |
  5. component_id | integer |
  6. created_at | timestamp without time zone | not null
  7. updated_at | timestamp without time zone | not null
  8. Indexes:
  9. "collection_components_pkey" PRIMARY KEY,btree (id)

收藏表

  1. Column | Type | Modifiers
  2. ------------+-----------------------------+----------------------------------------------------------
  3. id | integer | not null default nextval('collections_id_seq'::regclass)
  4. style_id | integer |
  5. name | character varying(255) |
  6. title | character varying(255) |
  7. created_at | timestamp without time zone | not null
  8. updated_at | timestamp without time zone | not null
  9. Indexes:
  10. "collections_pkey" PRIMARY KEY,btree (id)

组件表

  1. Column | Type | Modifiers
  2. -------------+-----------------------------+---------------------------------------------------------
  3. id | integer | not null default nextval('components_id_seq'::regclass)
  4. name | character varying(255) |
  5. title | character varying(255) |
  6. category_id | integer |
  7. created_at | timestamp without time zone | not null
  8. updated_at | timestamp without time zone | not null
  9. Indexes:
  10. "components_pkey" PRIMARY KEY,btree (id)

解决方法

试试这个:
  1. default_scope { order('collections.id ASC') } //collection.rb
  2. default_scope { order('components.id ASC') } //component.rb

当您执行id上升的连接变为不明确的列时,因为组件和集合都具有id列.它不知道使用哪个.

猜你在找的Ruby相关文章