我的服务器有一个http post请求:
$http.post(url, parameters, config)
.success(function (data, status, headers, config) {
$scope.PostDataResponse = data;
log.innerHTML += $scope.PostDataResponse;
})
.error(function (data, status, header, config) {
$scope.ResponseDetails = "Data: " + data +
"<hr />status: " + status +
"<hr />headers: " + header +
"<hr />config: " + config;
log.innerHTML += $scope.PostDataResponse;
});
问题是我的服务器在请求结束之前正在刷新内容,我希望Angular请求对每次刷新做出反应。
示例 - 服务器正在运行后台进程,只要完成一个步骤就会更新,以便让侦听器显示进度条。
使用角度和HTTP发布请求获取这些更新的正确方法是什么?