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.
我正在尝试为 GII 自动生成的模型创建 CRUD。
类的存储方式类似于models/entity/Article.php。当我尝试将 Gii 生成器设置为类名 models.entity.SomeClass 或 entity.SomeClass 时,它不起作用。
gii 停止异常别名“entity.Article”无效。确保它指向现有目录或文件。
如何正确运行 CRUD 脚本?
在config/main.php文件中设置别名(在 之前执行此操作return array):
return array
Yii::setPathOfAlias('entity',dirname(__FILE__).DIRECTORY_SEPARATOR.'../models/entity'); // rest of config return array( // ... );
然后entity.Article在gii中使用。
entity.Article