0

私のRailsアプリには、次のような行があります。

<% if user_signed_in? && Registry.exists?(current_user.registry) %>

どうすれば作れますか

if Registry. **does not** exists?(current_user.registry)

前もって感謝します。

4

1 に答える 1

2
if user_signed_in? && !Registry.exists?(current_user.registry)

(感嘆符に注意してください)または

if user_signed_in? and not Registry.exists?(current_user.registry)

読みやすさの点でそれが好きなら。Rubyでも同様に、を使用できますunless。これはと同じですが、if not最終的には読みにくくなる可能性があります。

于 2012-06-18T14:53:14.510 に答える