0
我有一個Notification
模型,其中有很多列是「未讀」。在Rails中過濾ActiverRecord集合
我需要使用簡單的方法在@notification集合中查找其中「未讀」值爲false的記錄。這樣的:
@notifications= Notification.all
@notifications.unread --> returns a subset of @notifications which are unread
@notifications.unread.count --> returns number of unread notifications
如何使這個「未讀」的方法?
這正是我想要的。謝謝。 –