これは答えられたこの前の質問に続く。実際に、そのクエリから結合を削除できることを発見したので、機能するクエリは
start_cards = DeckCard.find :all, :joins => [:card], :conditions => ["deck_cards.deck_id = ? and cards.start_card = ?", @game.deck.id, true]
これは動作するようです。ただし、これらのDeckCardを別の関連付けに移動しようとすると、ActiveRecord :: ReadOnlyRecordエラーが発生します。
これがコードです
for player in @game.players
player.tableau = Tableau.new
start_card = start_cards.pop
start_card.draw_pile = false
player.tableau.deck_cards << start_card # the error occurs on this line
end
および関連するモデル(tableauはテーブルのプレイヤーカードです)
class Player < ActiveRecord::Base
belongs_to :game
belongs_to :user
has_one :hand
has_one :tableau
end
class Tableau < ActiveRecord::Base
belongs_to :player
has_many :deck_cards
end
class DeckCard < ActiveRecord::Base
belongs_to :card
belongs_to :deck
end
このコードの直後に同様のアクションを実行DeckCards
し、プレーヤーの手に追加しました。そのコードは正常に機能しています。belongs_to :tableau
DeckCardモデルで必要かどうか疑問に思いましたが、プレイヤーの手札への追加には問題なく機能します。DeckCardテーブルにa tableau_id
とhand_id
columnがあります。
私はRails APIでReadOnlyRecordを検索しましたが、説明を超えていません。