문제

I have this statement :

username.blank? ? firstname : username

There is a shortcut or a way to avoid repeating 'username' ?

도움이 되었습니까?

해결책

As it seems you're using ActiveSupport, there is simple way to do this:

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