已采纳回答 / icebergwu
这句话相当于下面的代码:if cookies[:auth_token] && @current_user.nil? @current_user = User.find_by_auth_token!(cookies[:auth_token])end这里面没有对用户名的判断,这里使用的是 用户的 auth_token 来查找用户。
2016-07-14