在Rails中的典型User - Post - Comment模型中,每個用戶都可以創建一個Post並且還可以創建Comment,問題是如何抓住每個用戶對特定帖子的最新評論。只抓取Rails中的最新評論
Example:
Post A have 3 user making comment
User 1 have comment 1, 2, 3, 4, 5, 6
User 2 have comment 1, 2, 3, 4
User 3 have comment 1, 2
所以我想的觀點僅僅是對每一位用戶的最新評論:
Post A have 3 user making comment
User 1 latest comment that is 6
User 2 latest comment that is 4
user 3 latest comment that is 2
怎麼辦呢?
感謝
所以當張貼有3個用戶,你說,郵政模型的has_many用戶,或者說,它的has_many評論而這又屬於用戶? – Matchu 2009-08-27 00:28:55
用戶有很多帖子和評論,帖子有很多評論和屬於用戶,評論屬於帖子,屬於用戶 – gkrdvl 2009-08-27 00:30:21