0
我正在使用angularjs NG路由切換高炮的觀點,我做了它的工作,下面的示例代碼:角度,NG-HREF使頁面刷新
HTML: 映射 新產品 angularjs
.config(function ($routeProvider) {
$routeProvider
.when("/", {
templateUrl: "/MbfProduct/Main"
})
.when("/Mappings", {
templateUrl: "/Mappings"
})
.when("/Products", {
templateUrl: "/Products"
})
})
那麼一切都OK只是我不得不添加「#」在NG-href屬性所以頁面沒有得到刷新。
所以我的問題我怎麼能得到結果,我的意思是沒有頁面刷新,沒有'#'在HREF?
您的要求是什麼? –
我更新了問題 –