検索

ホームページ  >  に質問  >  本文

前端 - angualr Js 如何跳转页面 ?

我现在有个登陆页面, 我想在登陆成功后转到主页去 . 

    $http({
        method: 'GET',
        params: {
            'username': $scope.username
        },
        url: 'http://192.168.1.109:9090/userGet'
    }).success(function (data, status, headers, config) {
        if(null != data){
            $scope.error = "";
            //怎么跳到主页 , 用angular js 的方式而不是jquery或者javascript . 
        }
    }).error(function (data, status, headers, config) {
        if(null == data){
            $scope.error = "用户名或密码错误";
        }
    });

该怎么弄 . ?

仅有的幸福仅有的幸福2745日前570

全員に返信(1)返信します

  • PHPz

    PHPz2017-05-15 17:01:03

    $locationを使用できます
    $location.path('/index')

    返事
    0
  • キャンセル返事