อยากทราบวิธีเขียนโค๊ดการสร้าง Comment เวลาที่มีผู้เข้าชมเว็บไซต์อ่านบทความแล้วสามารถ Comment คำถามต่างๆหรือ ข้อความต่างๆในเพจนั้นได้
สมมติมี Model
Post (id, title, description)
Comment (id, post_id, description)
ใน PostController
public function actionView($id)
{
$model = $this->findModel($id);
$comment = new Comment();
if($comment->load(Yii::$app->request->post())
{
$comment->post_id = $model->id;
$comment->save(); //บันทึกความคิดเห็น
}
return $this->render('view', [
'model' => $model,
'comment' => $comment,
]);
}
ตอบ/อธิบาย