最佳答案
我使用 ajax 调用在服务文件中执行功能,如果响应成功,我想将页面重定向到另一个 URL。目前,我正在通过普通的 JS 代码 window.location = response['message'];
来完成这项工作。但我需要用 AngularJS 代码替换它。我已经查看了关于堆栈溢出的各种解决方案,它们使用的是 $location
。但我是新的 AngularJS 和有麻烦实施它。
$http({
url: RootURL+'app-code/common.service.php',
method: "POST",
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
dataType: 'json',
data:data + '&method=signin'
}).success(function (response) {
console.log(response);
if (response['code'] == '420') {
$scope.message = response['message'];
$scope.loginPassword = '';
}
else if (response['code'] != '200'){
$scope.message = response['message'];
$scope.loginPassword = '';
}
else {
window.location = response['message'];
}
// $scope.users = data.users; // assign $scope.persons here as promise is resolved here
})