0

userを使用して作成されたデータベースにすでにがありremote_avatar_url、2つの画像(中バージョンと大バージョン)が処理されました。しかし今、ユーザーは自分の画像を別の画像に変更する機能が必要remote_avatar_urlです。これを行うと、画像は再処理されません。私が間違っていることはありますか?

users.rb

def update
  user = User.find(params[:id])
  user.remote_image_url = "https://www.google.com/images/srpr/logo3w.png"
  user.save
end

ありがとう!

4

1 に答える 1

0

バージョンの再処理を強制できます

instance = MyUploader.new
instance.recreate_versions!

https://github.com/jnicklas/carrierwave#recreating-versions

于 2012-10-09T18:16:29.393 に答える