我遇到了一些在我的系统上运行角度问题。我一直在学习w3学校演示不同组件的角度演示。
这是我正在尝试的一个:
http://www.w3schools.com/angular/tryit.asp?filename=try_ng_routing_template
以下是我正在使用的代码:
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-route.js"></script>
<body ng-app="myApp">
<p><a href="#/">Main</a></p>
<a href="#banana">Banana</a>
<a href="#tomato">Tomato</a>
<p>Click on the links to change the content.</p>
<p>The HTML shown in the ng-view directive are written in the template property of the $routeProvider.when method.</p>
<div ng-view></div>
<script>
var app = angular.module("myApp", ["ngRoute"]);
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template : "<h1>Main</h1><p>Click on the links to change this content</p>"
})
.when("/banana", {
template : "<h1>Banana</h1><p>Bananas contain around 75% water.</p>"
})
.when("/tomato", {
template : "<h1>Tomato</h1><p>Tomatoes contain around 95% water.</p>"
});
});
</script>
</body>
</html>
它不会在我的系统上的标头标签之间切换。
编辑:代码在其他地方工作正常,但在我的系统上没有。 它在我的apache文件夹中。跑掉本地主机。 JavaScript,php和html工作得很好。我也使用过jQuery。知道为什么角度可能有问题吗?
答案 0 :(得分:1)
Your file may be cached in your browser so even saving the file is not updating what is running in your browser.
Clear your browser cache. Restart your browser.