我正在将ngRoute用于我的应用程序。问题是当我重新加载该页面时,出现错误。 错误说 白标错误页面 此应用程序没有/ error的显式映射,因此您将此视为后备。
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);
});