Добрый день.
Имеется html страница. Внутри страницы angular работает, код писать в тэге могу. Отдельным файлом именно angular не распознается.
Отдельно js файл подключается, проверял при помощи команды alert работоспособность отдельного файла.
Всю голову сломал уже, почему в отдельном файле не могу работать с angular.
Куда копать, в чем затык?
<!doctype html>
<html lang="en" ng-app="app">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.0/angular.min.js"></script>
<script>angular.module('app', []).controller('indexController', function ($scope, $http) {
const contextPath = 'http://localhost:8189/app';
$scope.loadProducts = function () {
$http.get(contextPath + '/products')
.then(function (response) {
$scope.ProductsList = response.data;
});
};
$scope.loadProducts();
});</script>
<title>Продукты</title>
</head>
<body>
<div class="container" ng-controller="indexController">
<h3>Перечень продуктов</h3>
<table class="table table-hover" cellpadding="0" cellspacing="0">
<tr>
<td>ID</td>
<td>Название продукта</td>
<td>Цена</td>
<!-- <td>Действие</td>-->
</tr>
<tbody>
<tr ng-repeat="p in ProductsList" >
<td>{{p.id}}</td>
<td>{{p.title}}</td>
<td>{{p.cost}}</td>
</tr>
</tbody>
</table>
</div>
<script src="index.js"></script>
</body>
</html>