我正在尝试创建一种社交网络类型的网站,用户可以在其中发送/接收好友请求。在我们当前的系统中,当用户发送请求时,所需信息的一半存储在数据库中,然后当用户接受其余信息时,其余信息将被输入。
关系用户表是 id、partyone、partytwo、到期日、活动
我遇到的问题是一旦用户接受请求并输入到期日期,它就会插入到新列中 - 而不是与该用户相关的列中
here is my add function
if($this->request->is('post')){
$this->Relationship->create();
if ($this->Relationship->save($this->request->data))
{
$this->Session->setFlash('The relationship has been saved');
}
else { $this->Session->setFlash('The relationship could not be saved. Please, try again.'); }
}
}
here is my approve function
if($this->request->is('post')){
$this->Relationship->create();
$this->Relationship->save($this->request->data);
$this->Session->setFlash('The information has been saved');}
else{$this->Session->setFlash('The information couldnt be saved');}
我假设我错过了一些简单的代码,任何帮助将不胜感激将其插入新列 - 而不是与该用户关系相关的列*