これが私のコードの一部です
$file=Files::model()->findByPk($id);
if($file == null) {
throw new CHttpException(404,'Not found');
}
$count = $file->count;
$count++;
$file->count = $count;
$file->save();
$this->redirect(Yii::app()->request->hostInfo."/".$file->path);
Files
モデルにはフィールドが含まれていますcount
。コードは問題なく、警告はありませんが、saveメソッドが機能していません。