我想将我的 Angular 应用程序拆分为不同的模块,因为它越来越大。
在主模块中,我有这个代码,它位于 app/js/app.js 目录中
angular.module('mainApp', ['subApp']);
我在目录 app/components/business/business.js 中的子模块
angular.module('subApp', []);
如果我现在启动我的应用程序,我会收到错误消息Uncaught Error: No module: subApp
如果我将 subApp 放在 mainApp 的文件中,它可以正常工作。
你能告诉我,我必须做什么才能让 angular 在不同的目录中找到 subApp 吗?