AngularJS部分:沒有哈希使用ngView指令在angularjs
myApp.config(['$routeProvider','$locationProvider',function($routeProvider,$locationProvider) {
$routeProvider.
when('/main', {templateUrl: 'sub/main.tpl', controller: MainCtrl}).
when('/users', {templateUrl: 'sub/users.tpl', controller: UserCtrl}).
otherwise({redirectTo: '/main'});
}]);
和我的index.html
<a href="#/main">Main</a> | <a href="#/users">Display Users</a>
<div ng-view></div>
它的偉大工程,但我有哈希值的問題。
當我嘗試使用錨即:
<a href="#test">test</a>
當我點擊這個錨被調用的主頁。
當我們使用ng-view的時候可以擺脫散列嗎?
什麼是你期待發生什麼?問題不清楚。這聽起來像你可能需要一個鏈接的指令,但需要更多的細節 – charlietfl 2013-03-23 14:10:15