工作,我試圖路線我的角度JS路由應用程序但它不工作。 當我點擊鏈接沒有任何反應。 我的HTML:Angularjs路由選擇不是在所有
<!DOCTYPE html>
<html>
<script src="./music.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular-route.min.js"></script>
<script src="./app.js"></script>
<script src="./route.js"></script>
<body ng-app="myApp" ng-controller="myCtrl">
<a href="#!/keyBoad">start</a>
<ng-view>
</ng-view>
<style>
button { width : 100px; height : 100px; }
</style></body>
我的JS路由:
app . config (function ($routeProvider){
$routeProvider
. when ('/keyBoard' , {
templateUrl : 'keyBoard.html' }) . otherwise ({
redirectTo :'404.html' }); });
任何錯誤都在我的控制檯和一切我發現這個問題沒有幫助。 我在做什麼錯?
似乎有一個錯字。它的'HREF = 「#!/ keyBoad」'但應該是 「鍵盤」 –