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: {
"Content-Type": function () {
return undefined;
}
}
}).success(function (result) {
defered.resolve(result);
}).error(function (result, status) {
defered.reject(status);
});
return defered.promise;
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
AngularJS의 ng-options best practise쓸데없는 말은 하지 말고 바로 코드를 찍어라. 리소스를api에 직접 전달하지 말고 문자열이나 정형(예를 들어 귀속된ng-model="selected")을 권장합니다 angular에서 생성된 의value가 무엇인지, ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.