我有以下關係:只選擇關聯模型的某些字段CakePHP中
User
的hasManyUserNotification
Notification
的hasManyUserNotification
UserNotification
屬於關聯User
,Notification
notifications
表有以下欄目:id
,subject
,content
users_notifications
表有以下欄目:id
,user_id
,notification_id
,status
在UsersController
,我怎麼可以檢索從一個用戶的所有通知? (這意味着,每個通知的所有這些細節:主題,內容和狀態)。
而且,我該如何限制返回的字段數?當我從UsersController發出請求時,我不想從find()數組中的用戶模型中檢索任何字段。
謝謝!
它的確如此。謝謝! – linkyndy 2010-11-28 15:09:20