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 框架并创建了UserIdentity组件来验证正常工作的用户,但是当我将代码放在服务器上时,它给了我错误提示:
UserIdentity
数组([user_id] => 数组([0] => 用户不能为空。)[logout_time] => 数组([0] => 注销时间不能为空。))
任何有助于我找到问题根源的评论都是有益的。
由于某种原因,您的模型规则将 user_id 和 logout_time 标记为必需。您应该只声明规则来验证用户提交的数据。查看指南以获取更多信息。