无法为视图实例化 ngRoute
Failing to instantiate ngRoute for a View
我在我的 JS 文件中使用了以下代码:
var mainAngular = angular.module('baniyaApp', ['ngRoute','ui.bootstrap']);
////======================== CONFIG =================================
mainAngular.config(function($routeProvider, $locationProvider) {
alert('ng route');
$routeProvider
.when('/', {
templateUrl: "HomeLandPage.html"
});
});
////=================================================================
"HomeLandPage.html" 存在于同一位置,因此路径没有问题。在 it.I 中包含 ng-view 的主页已处理使用 http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.js link.[=13 中的 angular.js 文件=]
我在控制台上收到以下错误。请确认 JavaScript 文件是否正确。
Uncaught Error: [$injector:modulerr] Failed to instantiate module baniyaApp due to:
Error: [$injector:modulerr] Failed to instantiate module ngRoute due to:
Error: [$injector:nomod] Module 'ngRoute' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
在您的应用程序目录中包含 angular.js
和 html
之后,您需要包含 angular-routes.js
我在我的 JS 文件中使用了以下代码:
var mainAngular = angular.module('baniyaApp', ['ngRoute','ui.bootstrap']);
////======================== CONFIG =================================
mainAngular.config(function($routeProvider, $locationProvider) {
alert('ng route');
$routeProvider
.when('/', {
templateUrl: "HomeLandPage.html"
});
});
////=================================================================
"HomeLandPage.html" 存在于同一位置,因此路径没有问题。在 it.I 中包含 ng-view 的主页已处理使用 http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.js link.[=13 中的 angular.js 文件=]
我在控制台上收到以下错误。请确认 JavaScript 文件是否正确。
Uncaught Error: [$injector:modulerr] Failed to instantiate module baniyaApp due to:
Error: [$injector:modulerr] Failed to instantiate module ngRoute due to:
Error: [$injector:nomod] Module 'ngRoute' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
在您的应用程序目录中包含 angular.js
和 html
angular-routes.js