Paperclip Jcrop和Rails 4 - 无限循环修复

时间:2013-11-17 16:17:30

标签: ruby-on-rails paperclip jcrop

试图让它在Rails 4中运行时遇到一些麻烦 - http://railscasts.com/episodes/182-cropping-images?view=comments

根据评论中的一个问题:使用after_update回调来更新图像,它遇到了无限循环

显然修复是放 @ user.avatar.reprocess!直接在控制器中代替。但是我不确定控制器到底应该在哪里。如果我把它放在正确的位置它是否适用于rails 4?

我试过以下但没有运气:

def create
  @user = User.new(user_params)

  if @user.save
        if user_params[:avatar].blank?
          @user.avatar.reprocess!
          flash[:notice] = "Successfully created user."
          redirect_to @user
        else
          render :action => "crop"
        end
  else
    render 'new'
  end

end

def update
  @user = User.find(params[:id])

  if @user.update_attributes(user_params)
        if user_params[:avatar].blank?
          @user.avatar.reprocess!
          flash[:notice] = "Successfully updated user."
          redirect_to @user
        else
          render :action => "crop"
        end
  else
    render :action => 'edit'
  end
end

2 个答案:

答案 0 :(得分:0)

我的更新操作:

def update
  @user=User.find(params[:id])
  @user.update_attributes(user_params)
if @user.cropping?
  @user.profile_image.reprocess!
end
if @user.save!
    redirect_to user_path(@user)
end
end

和我的cropper.rb

 module Paperclip
 class Cropper < Thumbnail
def transformation_command
  if crop_command
    crop_command + super.join(' ').sub(/ -crop \S+/, '').split(' ') # super returns an array like this: ["-resize", "100x", "-crop", "100x100+0+0", "+repage"]
  else
    super
  end
end

def crop_command
  target = @attachment.instance
  if target.cropping?
    ["-crop", "#{target.crop_w}x#{target.crop_h}+#{target.crop_x}+#{target.crop_y}"]
  end
  end
 end
end

这很适合我。

答案 1 :(得分:0)

您可以通过Paperclip - Issue #866了解有关此问题的更多信息。

用户 jgarber 使用以下内容描述了解决问题的方法:

  def reprocess_photo
    photo.assign(photo)
    photo.save
  end