gpt4 book ai didi

javascript - Uncaught Error : [$injector:modulerr] Failed to instantiate module jacksApp due to: Error: [$injector:nomod]

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

我正在尝试学习 Angular,但无法正确加载它。我看了一下关于 SO 的类似问题,但找不到我要找的东西。

有人知道为什么会出现这个错误吗?在我看来,我是否正确地调用了我的新应用程序/模块?我的剧本错了吗?我尝试使用的 Angular 版本不受支持吗?我的脚本中还有其他错误吗?

由于某些原因,我做不到。

index.html:

<!DOCTYPE html >

<html ng-app="jacksApp">
<head>
<script src='https://code.angularjs.org/1.5.0-rc.0/angular.js'></script>
</head>
<body>
<div ng-controller="mainController">
<h1>Making an Angular App</h1>
</div>
</body>
</html>

应用程序.js:

var myApp = angular.module('jacksApp', []);

myApp.controller('mainController', function() {

});

最佳答案

问题是您忘记将 app.js 包含到页面中:

<html ng-app="jacksApp">
<head>
<script src='https://code.angularjs.org/1.5.0-rc.0/angular.js'></script>
<script src='app.js'></script>
</head>
<body>
<div ng-controller="mainController">
<h1>Making an Angular App</h1>
</div>
</body>
</html>

请参阅 nomod 的文档错误消息,它很好地描述了可能的原因。

关于javascript - Uncaught Error : [$injector:modulerr] Failed to instantiate module jacksApp due to: Error: [$injector:nomod],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34558055/

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