XE(Rhymix)/응용 방법

[ 라이믹스 ] AJAX communication error while requesting 오류 임시해결책

June 2020. 5. 22. 20:45

개인자료 보관용으로

숭숭근님 글 퍼옴 ----

 

라이믹스에서 ajax 사용시 네트워크가 끊기거나 하는경우

오류메세지가 무한정 alert 되는 경우가 있다.

 

이럴때에는 임시방편으로 common/js/xml_handler.js 파일에서

alert 하는 부분을 주석처리하거나

console.log로 오류 표시 방식을 바꿔준다.

 

141번줄

alert("AJAX communication error while requesting " + params.module + "." + params.act + "\n\n" + error_info);

이 소스를 아래로 바꾸었다.
console.log("AJAX communication error while requesting " + params.module + "." + params.act + "<br><br>" + error_info);
            

문제점은 라이믹스 업데이트시마다 해야되는 부분이라

기존 ajax 소스를 변경해주는게 가장 좋을것 같다.