Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rails アプリで Mailboxer を使用していますが、会話内のすべてのメッセージを一度に取得したくありません。会話の最後の N 件のメッセージのみを取得するにはどうすればよいですか?
Mailboxer を使用したことはありませんが、ドキュメントとコードを見ると、通常の ActiveRecord メソッドを使用してメッセージを制限できるはずです。
を指定するとconversation、これは最後の 10 件のメッセージを取得します。
conversation
conversation.messages.order('created_at DESC').limit(10)