Javascript
[jQuery] ajax form 전송 시 IE9 json 파일 다운로드 문제
innocent_k
2015. 12. 16. 11:49
ajaxForm을 사용할 때 multipart로 파일 전송 시 json 파일 다운로드가 뜬다.
PHP를 기준으로 content-type이 multipart일 때 response header를
$this->header('Content-Type', 'text/json');
이렇게 해주고 script에서는 파일 전송일 때 $.parseJSON으로 파싱해서 사용한다.