1
我在我的應用程序中使用ngRoute。問題是當我重新加載該頁面時,出現錯誤。 錯誤說 白標籤錯誤頁面 此應用程序沒有明確的映射/錯誤,所以你看到這是一個後備。當頁面刷新時ngRoute不工作
var app = angular.module('myApp',['ngTable','jcs-autoValidate','ngRoute']);
// configure our routes
app.config(function($routeProvider,$locationProvider) {
$routeProvider
.when('/container-details', {
templateUrl : 'container-details-test.jsp',
controller : 'myCtrl'
})
$locationProvider.html5Mode(true);
});
你有你的服務器配置與HTML5模式工作中添加一些重寫規則。 – Striped