當我嘗試從localhost8000加載我的index.html頁面時出現以下錯誤。未捕獲的錯誤角度未在main.js頁面的第2行上定義。未定義未捕獲的錯誤角度未定義
的Index.html:
<!DOCTYPE html>
<html lang='en' ng-app='App'>
<head>
<meta charset="utf-8">
<script src = 'angular/angular.js'></script>
<script src = 'angular-route/angular-route.js'></script>
<script src = 'js/main.js'></script>
<title></title>
</head>
<body>
<ng-view></ng-view> <!-- Allows loading of partials-->
</body>
</html>
Main.js page:
// Will handle our ng-routes
var app = angular.module('App', ['ngRoute'])
// Configure the partials
app.config(function($routeProvider) {
$routeProvider.when('/', {
templateUrl: '/partials/_ninjas.html', // Allows us to move around and see all the ninjas
});
});
是否有錯字的地方在我的代碼,我沒有看到。我仍然參加在線編碼訓練營學習編碼,所以任何提示將不勝感激:)
那這樣做做的伎倆感謝幫助:) –
@DanielMayle你可以標記接受的答案,如果它幫助。 – abdoutelb
確定點擊綠色複選標記吧? –