gpt4 book ai didi

javascript - 不确定为什么 'userApp' 模块不可用

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

刚开始使用 angularJS,我不确定为什么我的模块不可用。

第一个代码片段是 HTML (main.js) 中引用的代码片段。

'use strict';

angular.module('userApp')
.controller('MainCtrl', function($scope, $http) {
$scope.user = [];
$http.get('http://127.0.0.1:8080/collector/50001366562').success(function(data) {
$scope.user = data;
})
})
<html ng-app="userApp">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.js"></script>
<script src="js/controllers/main.js"></script>
</head>
<body ng-controller="MainCtrl">
{{user}}

</body>
</html>

有人可以解释为什么这不起作用吗?

在 chrome JS 控制台中,我收到以下错误:

Uncaught Error: [$injector:nomod] Module 'userApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

Uncaught Error: [$injector:modulerr] Failed to instantiate module userApp due to: Error: [$injector:nomod] Module 'userApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.

最佳答案

angular.module 函数可以同时用作 getter 和 setter:

创建新模块时必须使用setter

angular.module('userApp', []);

这里的第二个参数是依赖数组

当您想访问现有模块时,例如。 G。要添加服务、 Controller 等,您可以使用 getter(不带第二个参数)

angular.module('userApp')

Getter 将返回模块,它可以在应用程序生命周期中多次调用。

关于javascript - 不确定为什么 'userApp' 模块不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30015038/

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