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.
我创建了一个日历模块。然后,我为事件创建了一个模型,并为 crud 操作生成了文件。但是当我将它复制到日历模块中各自的目录时,它不起作用,因为 Yii 无法找到模型类事件。虽然当我将事件模型文件放入主模型目录时,它开始工作。有什么问题?
您需要调整配置/主文件以包含新模块中的模型,如下所示
..... 'import' => array( application.modules.calendar.models.* ),