私もあなたと同じ問題に遭遇し、バージョン angular-1.4.3 を使用して解決しました。これが私の解決のプロセスです。デモを実行しようとすると、ネットワークデモアドレスからディレクティブ「nginclude」を実行しようとしていますが、Firefoxコンソールにエラーが表示されますが、バージョンをAngularの1.4.3に変更すると、すべて解決しました。ちなみに、バージョンは1.4.3からダウンロードできます
.js
var APP = angular.module('app', ['ngAnimate'])
APP.controller('ctrl', ['$scope', function($scope) {
$scope.templates =
[{name: 'template1.html',url:'template1.html'},
{name: 'template2.html',url:'template2.html'}];
$scope.template = $scope.templates[0];}]);
.html
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta Content-Type="html/text;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/animation.css">
<title>ngInclude demo</title>
</head>
<body>
<div ng-controller="ctrl">
<select ng-model="template" ng-options="t.name for t in templates">
<option value="">(blank)</option>
</select>
url of the template: <code>{{template.url}}</code>
<hr/>
<div class="slide-animate-container">
<div class="slide-animate" ng-include="template.url"></div>
</div>
</div>
</body>
<script src="js/angular.js"></script>
<script src="js/ngInclude.js"></script>
<script src="js/angular-animate.js"></script>
</html>
ありがとうございました。