0

RoR 2.3.11 を使用して、レガシー コードでこのモデルを考えると、次のようになります。

class Assignment < ActiveRecord::Base
  belongs_to :source_person 
  belongs_to :destination_person
  belongs_to :laptop

  def self.setScope(places_ids)
    find_include = [:laptop => {:owner => {:performs => {:place => :ancestor_dependencies}}}]
    find_conditions = ["place_dependencies.ancestor_id = (?)", places_ids]

    scope = { :find => { :conditions => find_conditions, :include => find_include } }
    Assignment.with_scope(scope) do
      yield
    end
  end
end

ステートメントに到達するたびにAssignment.with_scope、次の例外が発生します。

 Assignment Delete all (0.0ms)   Mysql::Error: Unknown column 'place_dependencies.ancestor_id' in 'where clause': DELETE FROM `assignments` WHERE (`id` IN (17)) AND (place_dependencies.ancestor_id = (1)) 

私のスキーマは次のようになります。

  create_table "assignments", :force => true do |t|
    t.date    "created_at"
    t.date    "date_assigned"
    t.time    "time_assigned"
    t.integer "source_person_id"
    t.integer "destination_person_id"
    t.integer "laptop_id"
    t.text    "comment"
  end

  add_index "assignments", ["destination_person_id"], :name => "assignments_destination_person_id_fk"
  add_index "assignments", ["laptop_id"], :name => "assignments_laptop_id_fk"
  add_index "assignments", ["source_person_id"], :name => "assignments_source_person_id_fk

  create_table "place_dependencies", :force => true do |t|
    t.integer "descendant_id"
    t.integer "ancestor_id"
  end

  add_index "place_dependencies", ["ancestor_id"], :name => "place_dependencies_ancestor_id_fk"
  add_index "place_dependencies", ["descendant_id"], :name => "place_dependencies_descendant_id_fk"

複数のモデルでほぼ同じコードを使用していますが、すべて正常に動作します。この問題に対処する方法について、ヒントを教えていただけますか?

4

1 に答える 1

0

以下を実行した後、動作します:

 def self.setScope(places_ids)
    find_include = {
      :laptop => {
        :owner => {
          :performs => {
            :place => :ancestor_dependencies}
        }
      }
    }
    find_conditions = {"place_dependencies.ancestor_id" => places_ids}

    Assignment.all :joins => find_include, :conditions => find_conditions
    yield
  end

この回答は、経験豊富な Ruby on Rails 開発者によるレビューが必要です。

于 2011-07-25T19:56:36.253 に答える