阅读背景:

我正在使用angularjs创建一个网站并使用ngRoutes。我的查询是关于从网址中删除#

来源:互联网 
Following is my code where I am configuring my routes:

/**
 * Main AngularJS Web Application
 */
var app = angular.module('chocomelte', [
  'ngRoute'
]);

/**
 * Configure the Routes
 */
app
.controller('HomeCtrl',HomeCtrl)
.controller('AboutCtrl',AboutCtrl)
.config(['$routeProvider','$locationProvider', function ($routeProvider, $locationProvider) {

  $locationProvider.html5Mode(true);

  $routeProvider
    .when("/", {
        templateUrl: "partials/home.html",
        controller: "HomeCtrl"
    })
    .when("/about", {
        templateUrl: "partials/about.html", 
        controller: "AboutCtrl"
    })
}]);
Following is my code where I am configuring my 



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: