最初は、ngRouteモジュールが原因である可能性があると考えました。同じerror.asこれはみんなどんな助け....
index.htmlを
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<title>Contact List Application</title>
</head>
<body>
<div class="container" ng-controller="AppCtrl">
<h1>Contact List for Members</h1>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>contact</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="contact in contactlist">
<td>{{contact.name}}</td>
<td>{{contact.email}}</td>
<td>{{contact.number}}</td>
</tr>
</tbody>
</table>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular-route.min.js"></script>
<script src="controllers/controller.js">
</script>
</body>
</html>
controller.jsオンラインコードコンパイラのコードをテスト
angular.module('myApp', ['ngRoute'])
.controller('AppCtrl', function AppCtrl($scope) {
person1 = {
name: 'tm',
email: '[email protected]',
number: '(111) 222-2222'
};
person2 = {
name: 'dk',
email: '[email protected]',
number: '(111) 222-2223'
};
person3 = {
name: 'hey',
email: '[email protected]',
number: '(111) 222-2224'
};
var contactlist = [person1, person2, person3];
$scope.contactlist = contactlist;
});
を私の頭を食べている初心者その臥しかし、私はこのコードをノードサーバlocalhostで実行しているときに、上記のエラーが発生します。
コンソールでエラーが発生しました。 ?? Just F12 –
angular.js:38未知のエラー:[$ injector:modulerr] http://errors.angularjs.org/1.6.3/$injector/modulerr?p0=myApp&p1=Error%3A%2...ogleapis.com% (angle.js:402) でのangle.js:38 のangular.js:4920 (p。angular.js:402) のg(angular。 JS:4880)EB(angular.jsで :Cで4802) (angular.js:1909)は、PC(angular.jsで :1930)UEで (angular.js:1815)angular.jsで 。 33340 HTMLDocument.b(angular.js:3435) –