$ urlRouterProvider.otherwise()不会重定向

时间:2016-08-01 00:42:50

标签: angularjs ionic-framework

我的$ urlRouterProvider.otherwise();

有问题

在Android上模拟时,应用程序会在艺术家状态启动而不是欢迎。

我不知道问题可能来自哪里。

app.config(['$stateProvider', '$urlRouterProvider', '$ionicConfigProvider', '$sceDelegateProvider', function($stateProvider, $urlRouterProvider, $ionicConfigProvider, $sceDelegateProvider){

    $stateProvider.state('welcome', {
        url: '/welcome',
        templateUrl: 'templates/welcome.html',
        controller: 'WelcomeCtrl'
    })

    .state('user',{
        url:'/user',
        templateUrl: 'templates/user.html',
        controller: 'UserCtrl'
    })
    .state('settings',{
        url:'/settings',
        templateUrl: 'templates/settings.html'
//        controller: 'SettingsCtrl'
    })
    .state('artists',{
        url:'/artists',
        templateUrl: 'templates/artists.html',
        controller: 'ArtistsCtrl'
    })
    .state('artist',{
        url:'/artists/:artistId',
        templateUrl: 'templates/artist.html',
        controller: 'ArtistCtrl'
    })
    .state('search',{
        url:'/search',
        templateUrl: 'templates/search.html',
        controller: 'SearchCtrl'
    });

    $urlRouterProvider.otherwise('/welcome');

}]);

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

尝试使用

$stateProvider
.state("welcome", { url : '/welcome'})