gpt4 book ai didi

javascript - 上传带有进度百分比的 angularjs 文件

转载 作者:行者123 更新时间:2023-11-29 18:00:53 25 4
gpt4 key购买 nike

在我的网络应用程序中,我有一项服务可以使用 angularjs 和分段上传来上传文件。这是一个例子:https://jsfiddle.net/ZG9re/3909/它工作得很好,但我不明白在上传过程中如何看到文件的百分比。我不想使用 XMLHttpRequest 但如果可能我需要维护此代码。这是代码:

var myApp = angular.module('myApp', []);

myApp.directive('fileModel', ['$parse', function ($parse) {
return {
restrict: 'A',
link: function(scope, element, attrs) {
var model = $parse(attrs.fileModel);
var modelSetter = model.assign;

element.bind('change', function(){
scope.$apply(function(){
modelSetter(scope, element[0].files[0]);
});
});
}
};
}]);

myApp.service('fileUpload', ['$http', function ($http) {
this.uploadFileToUrl = function(file, uploadUrl){
var fd = new FormData();
fd.append('file', file);
$http.post(uploadUrl, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(){
})
.error(function(){
});
}
}]);

myApp.controller('myCtrl', ['$scope', 'fileUpload', function($scope, fileUpload){

$scope.uploadFile = function(){
var file = $scope.myFile;
console.log('file is ' );
console.dir(file);
var uploadUrl = "/fileUpload";
fileUpload.uploadFileToUrl(file, uploadUrl);
};

}]);

html:

<div ng-controller = "myCtrl">
<input type="file" file-model="myFile"/>
<button ng-click="uploadFile()">upload me</button>
</div>

感谢帮助

最佳答案

您的代码所做的只是制作一个 $http POST 来上传文件。由于这是一个标准的 HTTP 事务,您不会从服务器获得响应,直到超时或成功 (2xx) 或失败。

因此,对于您当前的代码,您无法执行此操作。

但是,有一个名为 ng-file-upload 的模块

https://github.com/danialfarid/ng-file-upload

它允许您确定进度。

结合进度条使用它

参见 - http://angular-ui.github.io/bootstrap/#/progressbar

你可以给用户很好的反馈:)

我之前曾在专业 SPA 中让这 2 个人一起工作。

希望这对您有所帮助。

ng-file-upload 的方法是......

$scope.upload = function (file) {
Upload.upload({
url: 'upload/url',
data: {file: file, 'username': $scope.username}
}).then(function (resp) {
console.log('Success ' + resp.config.data.file.name + 'uploaded. Response: ' + resp.data);
}, function (resp) {
console.log('Error status: ' + resp.status);
}, function (evt) {
var progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
console.log('progress: ' + progressPercentage + '% ' + evt.config.data.file.name);
});
};

THEN方法的3个函数分别是SUCCESS、FAILURE、EVENT(进度)

我怀疑 $http THEN 方法是否支持 3rd EVENT 函数,但您可以试一试。

关于javascript - 上传带有进度百分比的 angularjs 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35042623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com