gpt4 book ai didi

yii - ActiveRecord 不更新数据

转载 作者:行者123 更新时间:2023-12-04 19:22:18 28 4
gpt4 key购买 nike

这是我的一段代码

$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 field 。
代码没问题,也没有警告,但是save方法不行。

最佳答案

试试 $file->getErrors()在 save() 之后和重定向之前显示以查看是否有错误

这会告诉你什么是问题。最常见的是您没有填充模型在数据库中插入行所需的依赖项

以良好的格式查看它使用

CVarDumper::Dump($file->getErrors(),100,true)

关于yii - ActiveRecord 不更新数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11143468/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com