ng-file-upload multiple file upload / spring controller
ng-file-upload 라이브러리를 이용해서 파일을 여러개와 다른 컨텐츠들을 보내고 싶을때, 1cs html에 ngf-select를 선언해서 파일을 특정 변수에 담는다. 12345var vm = this; vm.onFileSelect2 = function($files){ vm.file = $files;}Colored by Color Scriptercs ajax 부분에서 arrayKey에 '' 값을 선언해 준다. 12345678910111213 vm.dataFrm = { name:'test', age:10 } Upload.upload({ url: 'fileupload url', fields: vm.dataFrm, // send variable file: vm.file, arrayKey: '' //