我正在开发一个模块化的角度应用程序,我在 angular-module-1 模块中定义了我的文件夹路径(常量:BASE_PATH:“path/to/folder”)。我想在位于我的应用程序的另一个模块(angular-module-2)中的角度组件中重新使用这个常量。我想在我的项目中多次使用这个常量。
module.component("relationshipSearch", {
templateUrl: BASE_PATH +'/link/to/other/folder',
女巫是将这个常量定义为在所有解决方案项目中可见的全局变量的最佳方法这是我的项目结构:
project
|-- angular-module-1
| |-- angular-module-1.js
| |-- angular-module-1.html
|-- angular-module-2
| |-- angular-module-2.js
| |-- angular-module-2.html