[오류] crbug/1173575, non-JS module files deprecated.
by mini_min[오류] crbug/1173575, non-JS module files deprecated.
게시판에 업로드된 파일을 다운로드할 때, 없는 파일을 다운로드 하는 경우 생기는 오류였다.
파일이 잘 못 올라간 상태 (없는 상태) 에서 다운에 실패하니 history.back() 쪽에서 문제가 생긴 것 같다.
파일을 다시 업로드하니 해결한 문제. out.println 이 아닌 리다이렉트로 바꿔야할듯
if( ! b ) {
try {
resp.setContentType("text/html; charset=utf-8");
PrintWriter out = resp.getWriter();
out.println("<script>alert('파일 다운로드가 불가능 합니다 !!!');history.back();</script>");
} catch (Exception e) {
}
}
'개발 공부중 > 📑 오류 관리' 카테고리의 다른 글
Log4j 정리 (log4j.properties 설정 방법) (0) | 2023.07.27 |
---|---|
[MySQL] SQL 오류: Data truncation: Incorrect string value (0) | 2023.03.27 |
Mybatis 오류 (0) | 2023.01.05 |
[스프링 오류] 부적합한 열 : 1111 (0) | 2022.12.21 |
블로그의 정보
개발자 미니민의 개발로그
mini_min