应为数据库表的结构被缓存了。删除runtime文件夹或者执行
//清理指定表结构缓存数据 Yii::$app->db->getSchema()->refreshTableSchema('{{%post}}');//这里post是出去表前缀的表名 //清理所有表结构缓存数据 Yii::$app->db->getSchema()->refresh();
完成!
学习教程推荐:yii框架
以上是yii2给数据库表新增字段后对应模型无法识别到该属性的详细内容。更多信息请关注PHP中文网其他相关文章!