防止urlRouterProvider.otherwise

时间:2015-10-31 23:20:39

标签: angularjs ionic-framework angular-ui-router

我正在通过一个非常长的网址来查看。但是我的$urlRouterProvider.otherwise正在接管并把我带回家。如何阻止$urlRouterProvider.otherwise执行view2?

.state('nav.view2', {
    url: '/view2/:url',
    views: {
        'games-tab': {
            templateUrl: 'src/views/view2.html',
            controller: 'view2'
        }
    }
})

.controller('view1', function($scope, $stateParams, $http, $state) {
    $scope.open = function(googleUrl)
    {
        $state.go('nav.view2', {url: googleUrl});
    }
})

0 个答案:

没有答案