目前我有这段代码:
$http({
method: 'POST',
url: "processing",
data: $scope.jsonResult,
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
}).then(function successCallback(response) {
$window.location.href = '/MatrixIIS';
}, function errorCallback(response) {});
我的主要问题是,当我重新加载页面时,我有太多的数据要提取,因此我的用户界面被阻止。所以我想做的是发布数据,当我重新加载页面时,使用get方法使用另一个http请求,并在上传过程中显示进度条。
如何以最简单的方式实现这一目标?