好的,我是绿色的,但下面的 def 似乎是双负-y
def signed_in?
!current_user.nil? #the current user is not...um...not
end
因为我的耐心导师 M.Hartl 在他的 Rails 教程中使用了它。我必须相信它是吱吱作响的,但是...
说“当前用户是”的东西不会更干净吗?
def signed_in?
current_user
current_user.present?
current_user.any?
!!current_user
end
爆款有什么好处?