親レコードに属するレコードを破棄しようとしています。stack level too deep
しかし、Rails ではエラーが発生して実行できません。
私のクラス(簡略化)は次のように構築されています:
class Album < ActiveRecord::Base
has_many :photos, dependent: :destroy
accepts_nested_attributes_for :photos, reject_if: lambda { |p| p[:image].blank? }
...
end
class Photo < ActiveRecord::Base
belongs_to :album
mount_uploader :image, PhotoUploader
end
以下を試すと、例外が発生します。
Photo.destroy(12) # where 12 is the ID of the photo I want to destroy
# note that Photo.delete(12) works fine, but doesn't remove the image from the file system
写真を破棄するとこのエラーが発生する理由がわかりません。多分それcarrierwave
はそれと一緒mount_uploader
ですか?
編集1:これは間違いなく何かと関係がありcarrierwave
ます。私のアップローダには、(スタックが深すぎるまで) 何度も呼び出される次のコードがあります。
def unprocessed_image_filename
match_data = /^original_(.+)_\d{14}\.\D{3,4}$/.match(File.basename(model.image.to_s))
match_data ? match_data[1] : "photo"
end
これは、さまざまなバージョンの名前を決定するために使用されます。