gpt4 book ai didi

javascript - 为什么我的所有 Angular 模块都无法加载?

转载 作者:行者123 更新时间:2023-11-30 17:23:28 25 4
gpt4 key购买 nike

对于每个单独的 Angular 模块(动画、资源、路由、触摸等),我得到以下的一些变体:

Module 'ngResource' 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 比较陌生。我读了the docs on the error但我不确定如何应用它们。想法?

这是我声明模块的代码:

angular
.module('juddfeudApp', [
'ngAnimate',
'ngCookies',
'ngResource',
'ngRoute',
'ngSanitize',
'ngTouch'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html'
})
.when('/about', {
templateUrl: 'views/about.html'
})
.when('/admin', {
templateUrl: 'views/admin.html',
controller: 'AdminCtrl'
})
.otherwise({
redirectTo: '/'
});
});

HTML:

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>

</head>
<body ng-app="juddfeudApp">


<!-- all angular resources are concatenated by Gulp in lib.js-->

<script src="build/lib/lib.js" type="text/javascript"></script>
<script src="build/main.js" type="text/javascript"></script>
</body>
</html>

最佳答案

您需要在您的 html 文件中引用它们。

所以添加<script src="filename.js"></script>对于您要加载的每个模块/文件。

关于javascript - 为什么我的所有 Angular 模块都无法加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24714384/

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