使用下面的代码更新用户密码时,有没有办法使用这个PostgreSQL函数crypt('<password>', gen_salt('bf'))
?
def update
@player = Player.find(params[:id])
respond_to do |format|
if @player.update_attributes(params[:player])
flash[:notice] = 'Player was successfully updated.'
format.html { redirect_to(@player) }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @player.errors, :status => :unprocessable_entity }
end
end
end
答案 0 :(得分:1)
在update-update_all方法中至少有一种使用纯SQL的方法。
因此,要使用Postgres crypt方法更新玩家的密码,您可以执行以下操作:
Player.update_all "password = crypt('<password>', gen_salt('bf'))", "id = #{params[:id]}"