我们如何在角度中删除#sine

时间:2017-05-05 04:24:28

标签: html angularjs

我们如何删除#sine并使用locationprovider这是我的代码我们使用它但它无法正常工作

 <base href="/" />

var app = angular.module('quizApp', ['ngRoute', 'ngSanitize'])
  angular.module('quizApp').config(['$routeProvider','$locationProvider',function ($routeProvider,$locationProvider) { 

           var routes = [{
                  url: '/home',
                  template: 'templates/quiz.html',
                  controller: 'quizCtrl'
              }];

          routes.forEach(function (r, index) {
              $routeProvider.when(r.url, { templateUrl: r.template, controller: r.controller });
          }); 
          $routeProvider.otherwise({ redirectTo: '/home' });
              $locationProvider.html5Mode(true);
      }]);

0 个答案:

没有答案