Front-End1 Send XLSX File from Front end (Angular.js) to Back end with Fetch Fetch 로 프론트에서 백사이드로 xlsx 파일 보내기 xlsx 파일을 angular에서 input으로 받고 보내는 과정입니다. 해당 코드는 앵귤러 기반에서 작성했습니다. 가장 프론트 단의 input 은 다음과 같이 작성합니다. 프론트 단에서 아래와 같이 서버로 xlsx파일을 전송합니다. (Aungular환경에서 $scope 에 function을 만들어서 fetch를 사용했습니다.) $scope.uploadExcel = function (event) { var files = event.target.files; console.log("controller file", files); const formData = new FormData(); formData.append('inputFile', file[0]).. 2019. 12. 22. 이전 1 다음