我正在通过一个非常长的网址来查看。但是我的$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});
}
})