content-disposition 값을 읽을 수 없을 때
axios를 통해서 response.headers를 읽던 중 content-disposition을 읽을 수 없을 때 const fileName = response.headers['content-disposition'].split("filename=")[1]; CORS인 경우 서버 단에서 아래와 같이 content-disposition을 노출시켜줘야함. response.setHeader(HttpHeaders.ACCESS_CONTROL_EXPOSE_HEADERS, HttpHeaders.CONTENT_DISPOSITION); 참고 https://stackoverflow.com/questions/37897523/axios-get-access-to-response-header-fields Axios get acc..
개발
2022. 7. 25. 17:26