제 1 각도 프로젝트를 생성하는 동안 내 컨트롤러에 예기치 않은 문제가 있습니다 : https://www.youtube.com/watch?v=8-ZQHv70BCw&t=2119s 문제는 홈페이지 링크가로드되지 않습니다. 콘솔에 메시지가 표시되고 오류가 반환되지 않는 경우에도 아무런 효과가 없습니다. 나는 plunkr에서 이것을 테스트한다.AngularJS 컨트롤러가 작동하지만 html 페이지를로드하지 않습니다
index.html을 :
<!DOCTYPE HTML>
<html lang="en" ng-app="computer">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Computer Solutions</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- The justified navigation menu is meant for single line per list item.
Multiple lines will require custom code not provided by Bootstrap. -->
<div class="masthead">
<h3 class="text-muted">Computer solutions</h3>
<nav>
<ul class="nav nav-justified">
<li><a href="#/main">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div ng-controller='MainCtrl'>
<div ng-view></div>
</div>
<!-- Site footer -->
<footer class="footer">
<p>© 2016 Company, Inc.</p>
</footer>
</div> <!-- /container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script>
<script src="https://code.angularjs.org/1.6.1/angular.js"></script>
<script src="https://code.angularjs.org/1.6.1/angular-route.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular-resource.js"></script>
<script src="script.js"></script>
</body>
</html>
script.js
var app = angular.module("computer",['ngRoute'])
.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/main', {
templateUrl: 'main.html',
controller: 'MainCtrl'
});
}])
.controller('MainCtrl', [function(){
console.log('this is mainctrl');
}]);
과 main.html 사전에
this is main.
감사합니다, 마이클
당신이 우리에게 Plunkr이 있나요 :
작동 버전을 참조하십시오? –
경로가 localhost에서 작동하므로 xmlhttprequest 호출이 필요하므로 모든 서버에 연결 한 다음 작동하는지 테스트하십시오 –
html 파일의 올바른 경로가 있습니까? 예를 들어, './main.html'또는 '../main.html'이어야합니까? – user2085143