我在這裏遇到了很多類似的問題,並按預期做了一切。然而,我似乎無法得到這個簡單的Angular應用程序的工作。控制檯拋出此異常AngularJS未能加載模塊
angular.min.js:6 Uncaught Error: [$injector:modulerr]
AngularJS站點文檔給出了我遵循的一些建議。然而,我仍然得到同樣的例外。這是我的代碼。
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="utf-8">
<title>Dead Simple Proj</title>
<link rel="stylesheet" href="content/css/styles.css">
<script scr="app\app.js"></script>
<script src="app\lib\angular.min.js"></script>
</head>
<body>
<div ng-controller="GreetingController">
{{ greeting }}
</div>
</body>
</html>
我有這樣的App.js
var myApp = angular.module('myApp', []);
myApp.controller('GreetingController', function($scope) {
$scope.greeting = 'Hola!';
});
我仔細檢查了文件路徑和其他可能出現明顯的失誤,但沒有喜悅。 我絕對錯過了這裏的東西?謝謝。
第一角庫文件應該加載 – 2017-04-17 17:16:18