angularjs 1.6.0 (latest now) routes not working

前端 未结 5 701
北恋
北恋 2020-11-22 03:57

I was expecting to see this question on Stackoverflow but didn\'t. Apparently I\'m the only one having this problem that seems to me to be very common.

I have a basi

5条回答
  •  我寻月下人不归
    2020-11-22 04:08

    app.config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) {
      $locationProvider.hashPrefix('');
      $routeProvider
        .when('/add-quote', {
          templateUrl: 'views/add_quote.html',
          controller: 'QuoteCtrl'
        })
        .otherwise({ redirectTo: '/' });
    }]);
    

提交回复
热议问题