angularjs用FormData上传文件
这个问题,搜索到一篇博文 http://uncorkedstudios.com/blog/multipartformdata-file-upload-with-angularjs 可能版本不同,1.4.5版本Content-Type设置为undefined时,取的是默认的ContentType 查看源码,原来可以设置一个函数来返回 ContentType,当函数返回值为 undefined时,浏览器会自己加上正确的 ContentType this.uploadBinaryFile = function (files, field) { var defered = $q.defer(); var formData = new FormData(); if (angular.isArray(files)) { angular.forEach(files, function (file) { formData.append(field || "file", file); }); } else { formData.append(field || "file", files); } $http({ url: "/upload", method: "POST", data: formData, transformRequest: angular.identity, headers: {