前端 - angualr Js 如何跳轉頁面 ?
仅有的幸福
仅有的幸福 2017-05-15 16:59:03
0
1
573

我現在有個登陸頁面, 我想在登陸成功後轉到主頁去 . 

    $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 = "用户名或密码错误";
        }
    });

該怎麼弄 . ?

仅有的幸福
仅有的幸福

全部回覆(1)
PHPzhong

可以使用$location
$location.path('/index')

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板