angularjs上传图片和文件

Posted 果感

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs上传图片和文件相关的知识,希望对你有一定的参考价值。

很简单:

$scope.upload = function() {
			var f = $scope.myFile;
			var fd = new FormData();
			var img = document.querySelector(‘input[type=file]‘).files[0];
			//var file = [];
			//file.push(f);
			// file.push(img);
			fd.append(‘issueId‘, ‘1‘);
			fd.append(‘file‘, img);
			$http.post(‘/images‘, fd, {
				transformRequest: angular.identity,
				headers: {
					‘Content-Type‘: undefined
				}
			}).success(function (response) {
				debugger;
			}).error(function(response) {
				debugger;
			});
		};

  html

<div class="container" style="boeder: 1px solid #ddd">
                            <input type="file" name="pic" id="pic" emms-file-upload="myFile">
                            <a class="btn btn-primary" ng-click="upload()">upload</a>
                        </div>

directives: 可用可不用

    emmsMobile.directive(emmsFileUpload, function() {
        return {
            restrict: ACE,
            link: function(scope, elem, attr) {
                elem.on(change, function() {
                    scope.file = this.files[0];
                })
            },
            scope: {
                file: =emmsFileUpload
            }
        }
    })

 

以上是关于angularjs上传图片和文件的主要内容,如果未能解决你的问题,请参考以下文章

angularjs上传文件怎么设置$http为multipart/form-data

angularjs上传图片

在上传 Angularjs 之前预览图片

AngularJS 使用 ng-upload 上传图片

AngularJS图片上传功能的实现

使用 AngularJS 上传文件