我已经user
在使用创建的数据库中有一个remote_avatar_url
并处理了两个图像 - 中型和大型版本。但现在用户需要能够用另一个remote_avatar_url
. 当我这样做时,图像不会被重新处理。有什么我做错了吗?
用户.rb
def update
user = User.find(params[:id])
user.remote_image_url = "https://www.google.com/images/srpr/logo3w.png"
user.save
end
谢谢!