gpt4 book ai didi

javascript - Angular - 在多个文件中定义模块

转载 作者:行者123 更新时间:2023-11-27 23:59:02 25 4
gpt4 key购买 nike

我在 app.js 中有以下内容

config = angular.module('config', [])
.constant('Constants', {
Car: 'BMW',
Phone: 'G4'
});

services = angular.module('services', ['config']);
controllers = angular.module('controllers', ['config', 'services']);
app = angular.module('myApp', ['config', 'controllers']);

我想将“config”模块定义移动到一个单独的文件中,因为我预计它会变得更大。

是否可以将以下部分移动到单独的文件中:

config = angular.module('config', [])
.constant('Constants', {
Car: 'BMW',
Phone: 'G4'
});

最佳答案

这样做没有问题。

您只需确保配置模块将在应用程序模块之前加载

关于javascript - Angular - 在多个文件中定义模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31988457/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com