Yii2执行Save()方法失败为什么没有错误信息

PHPz
Release: 2020-09-05 09:53:21
Original
2686 people have browsed it

Yii2执行“Save()”方法失败却没有错误信息是因为在模型类中定义了一个方法,其解决办法就是修改代码为“return parent::beforeSave($insert);”即可。

Yii2执行Save()方法失败为什么没有错误信息

Yii2执行Save()方法失败为什么没有错误信息?

Yii2 执行Save()方法失败,却没有错误信息

一般用$model->errors 就能查看到更新失败的原因,但是这次却什么错误信息都没有,最后发现是因为在模型类中定义了一个方法

public function beforeSave($insert) {
    parent::beforeSave($insert); // TODO: Change the autogenerated stub
}
Copy after login

没有写返回信息,改成

public function beforeSave($insert) {
   return parent::beforeSave($insert); // TODO: Change the autogenerated stub
}
Copy after login

就可以了。

更多相关知识,请访问PHP中文网

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template