문제

I'm reading a guide about Rails and I came across this line in a Model class:

before_save { |user| user.email = email.downcase }

This is to make sure that the email address is lowercase before it hits the database (but you already know that, because you guys and gals are smart!).

However, why not just have this:

before_save { |user| user.email.downcase! }

Wouldn't that be simpler to execute, or am I missing something?

도움이 되었습니까?

해결책

Both do the same.. it just comes down to taste.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top