我正在尝试更新与其线程 ID 相关的记录数。这是我的id_thread字段不是主键的问题。但据我所知 cakephp 只支持更新与主要 id 相关的内容。
使用代码
$this->contact->id_thread = $id;
$this->Contact->saveField('is_read','y');
但这对我不起作用。有任何想法吗 ?
我的数据库结构
id |id_thread | id_sender| is_read | status
_______________________________________________
1 | 2 | 2 | n | 1
2 | 2 | 1 | n | 1