Angularjs页面重新加载帮助控制器内部

时间:2014-09-30 12:41:01

标签: php angularjs angular-ui-router

我正在尝试在angularjs和php中实现登录系统。

$scope.signForm = function() {
    $scope.loading = true;
    $scope.remember=true;
    $http.post('user/action/signin.php', $scope.formData)
            .success(function(data) {
                console.log(data);
                $scope.error = false;
                $scope.message = false;
                if (!data.success) {
                    $scope.error = data.error;
                    $scope.loading = false;

                } else {
                   $location.url('/userprofile.php'); //
                   $scope.loading = false;

                }
            });
};

我正在检查用户登录,如果成功我需要加载userprofile.php。我的userprofile.php页面不同,没有使用angularui。

感谢。

1 个答案:

答案 0 :(得分:0)

使用$window.location.href = '/userprofile.php'