角向前斜线" /"作为州Url

时间:2016-05-04 21:32:43

标签: angularjs angular-ui-router

我想在这里实现的目标如下。 我想创建一个只有" /"的状态Url。无论我们在哪条路上,都会被召唤。 目前没有工作,我相信我错过了一些不确定究竟是什么的东西。 如果有人可以提供帮助,我将不胜感激

defineState('main', {
            url: "/",
            controller: function () {
                console.log();
            },
        });

2 个答案:

答案 0 :(得分:1)

您使用的是ng-route还是ui-router?

使用ui-router你可以点这个

state('home', {
        url: '/',
        templateUrl: 'home.html'
    });

答案 1 :(得分:0)

查看以下答案How to watch for a route change in AngularJS?

$scope.$on('$routeChangeStart', function(next, current) { 
   ... you could trigger something here ...
});