【发布时间】:2016-10-18 15:49:52
【问题描述】:
我有这个主题表,该表链接到模型中带有 hasMany 的表 Post。
这是我的 $this->request->data
Array
(
[Topic] => Array
(
[id] => 1
[topic_title] => This is my topic
)
[Post] => Array
(
[1] => Array
(
[id] => 1
[title] => Blah
[message] => My message
)
[2] => Array
(
[id] => 2
[title] => Second Blah
[message] => Second My message
)
)
)
我更新它:
$this->Topic->saveAssociated($this->request->data);
但是,如果我还希望能够添加和删除该主题的帖子,我将如何进行?
【问题讨论】:
标签: cakephp cakephp-2.0 cakephp-2.3 cakephp-2.1