我正在用 CakePHP 编写一个包含帖子和附件的应用程序
表格如下:
Posts = id, title, datetime, content
Attachments = id, title, path, mime_type
Posts_Attachments = id, post_id, attachment_id
我对这里的关系有点困惑。到目前为止,我已经完成了:
岗位型号:
public $hasMany = array('Attachment');
和附件型号:
public $hasMany = array('Post');
但这种关系似乎并没有像预期的那样发挥作用。任何人都可以帮忙吗?
谢谢