Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在参考本教程在 YII 框架中开发一个博客系统。但是,我的 LoginForm 中遇到了身份验证错误。
CException Property "User.login_attempts" is not defined. /home/btspdcux1/project/common/lib/Yii/db/ar/CActiveRecord.php(144)
我正在实现与 yii 框架教程中给出的完全相同的方法,并按照该方法完成了所有步骤,但仍然面临问题。
任何帮助,将不胜感激。
在搜索您的错误时发现了这个
yii框架站点
简而言之。
在 User 类中声明属性“login_attempts”。它应该是,
class User extends CActiveRecord { public $login_attempts; ..... ..... }