gpt4 book ai didi

angularjs - angular.module 第二个参数的含义 "requires"

转载 作者:行者123 更新时间:2023-12-04 22:31:24 25 4
gpt4 key购买 nike

记忆 angular.module 的方法签名.如果是第二个参数,requires提供,然后我们将创建一个新模块而不是检索现有模块。从我看到的所有文档和示例中,这个参数在使用时总是传递一个空数组。我的问题是,是 requires除了告诉 Angular 创建一个新模块而不是获取现有模块之外,还打算用于其他任何事情吗?如果我改为传递一个非空数组会发生什么?这些值是否用于任何其他目的?非常感谢与解决方案的链接。谢谢。

最佳答案

requires 表示您的模块所依赖的模块数组。

例子:

模块A.js

var customModule = angular.module ('ModuleA');
// controller, services, factories , etc codes here

app.js(主应用)
var app = angular.module ("app", ["ModuleA"]);

如果我只是使用:
angular.module ("app");

这意味着我只是在检索名为“app”的模块。当 Controller 或指令或工厂在不同的 JS 文件中定义并且您想将其配置到模块“app”时,这是可用的

关于angularjs - angular.module 第二个参数的含义 "requires",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22801179/

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