我正在尝试检查User_avatar是否存在于表单中(由用户提交).如果他选择了不同的图像进行更新,我需要进行裁剪,否则它将重定向到编辑页面.
但如果我在控制器上运行下面的代码,如果我选择并发送图像,它会直接重定向到编辑页面.
调节器
if @user.update(user_params) if((@user.user_avatar.present?) && (!params[:user_avatar].blank?) ) format.html { render :action => 'crop'} else format.html { redirect_to edit_user_path,notice: 'user was successfully updated.' } format.json { head :no_content } end else format.html { render action: 'edit' } format.json { render json: @user.errors,status: :unprocessable_entity }
结束
def user_params params.require(:user).permit(:user,:crop_x,:crop_y,:crop_w,:crop_h,:user_avatar,:fname,:lname,:city_id,:location_id,:email,:password,:course,:phone_no) end