ユーザーが友達リクエストを送受信できるソーシャル ネットワーキング タイプの Web サイトを作成しようとしています。現在のシステムでは、ユーザーが要求を送信すると、必要な情報の半分がデータベースに保存され、ユーザーが残りの情報を受け入れると、残りの情報が入力されます。
Relationship_users テーブルは、id、partyone、partytwo、expirydate、active です。
私が抱えている問題は、ユーザーがリクエストを受け入れて有効期限を入力すると、そのユーザーに関連する列ではなく、新しい列に挿入されることです
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');}
私はいくつかの簡単なコードを見逃したと仮定して、そのユーザー関係に関連する列ではなく、新しい列に挿入された助けをいただければ幸いです*