0

そこで、モデルの 1 つで、テキスト本文内のハッシュタグを解析するメソッドを作成しました。モデルは次のとおりです。

class Conversation < ActiveRecord::Base
  has_many :comments
  has_many :hashtags, as: :hashtaggable, autosave: true
  belongs_to :user
  attr_accessible :description, :title, :user_id
  before_save :create_hashtags

  private

  def create_hashtags
    if self.description_changed? || self.hashtags.empty?
      ##scan for new hashtags
      scanned_tags = self.description.scan(/#\w+/)
      ##delete old hashtag
      self.hashtags.destroy_all unless self.hashtags.empty?
      ##save the new hashtag
      scanned_tags.each do |hashtag|
        self.hashtags.create name: hashtag
      end unless scanned_tags.empty?
    end
  end

  validates :description, presence: true, length: { in: 5..400 }
  validates :title, presence: true, length: {in: 20..250}
  validates :user, presence: true
end

これは、既存の「会話」を更新する場合は問題なく機能しますが、新しい会話を作成しようとすると、次のエラーが発生します。

    ActiveRecord::RecordNotSaved at /conversations 
    You cannot call create unless the parent is saved

モデルに欠けているものはありますか? 私はすべてを試しました。

4

1 に答える 1