Firefox에서 "조직되지 않은"오류가 발생하는 해결 방법

3820 단어 firefox
function createXMLHTTPRequest(objct) {
if (window.XMLHttpRequest) {//Mozilla
objct = new XMLHttpRequest();
//       if (objct.overrideMimeType) {
//           objct.overrideMimeType("text/xml");
//       }
} else if (window.ActiveXObject) {//IE
try {
objct = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
objct = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) { }
}
}
return objct;

 
오리지널:http://www.okajax.com/a/200902/0224S552009.html  
바로 제가 쓴 aax 클래스입니다. 결과를 정확하게 되돌릴 수도 있고 json을 통해 데이터를 정확하게 해석할 수도 있지만 Firefox의 오류 컨트롤러에는 항상 오류가 있습니다. "조직되지 않았습니다."프로그램이 올바르게 작동하지만 늘 불쾌하다.구글에서'ajax 미조직'으로 검색했는데 비슷한 질문도 있었지만 아무도 대답을 하지 않았다.
오늘 갑자기 궁금한 생각이 떠올랐습니다. Firefox의 영문 버전을 다운로드한 후에 안에서 같은 웹 페이지를 디버깅했는데 똑같은 오류가 존재했습니다. 그러나'미조직'이라는 영문 이름을 볼 수 있었습니다. "not well-formed"입니다. 그래서 구글에서'ajax not well-formed'를 검색했습니다. 아니나 다를까, 곧 문제의 해결 방안을 찾을 수 있었습니다.여러분은 이 페이지를 보실 수 있습니다.http://ajaxagent.org/modules/newbb/viewtopic.php?topic_id=85&forum=1.그 중의 관건적인 해결 방안은 다음과 같다. I finally found the solution to this problem!!That was a very tough one to crack.For now, in your agent.php, commment out the line
xmlHttpObject.overrideMimeType('text/xml');
So it should look like
//xmlHttpObject.overrideMimeType('text/xml');
I'll fix this one in the next release.

Thanks,
Steve Hemmady
Ajax Agent Team

, xmlHttpObject.overrideMimeType('text/xml'); OK , ajax , firefox 。
ajax , , json , firefox ——“ ” 。 , 。 google “ajax ” , , 。

, firefox , , , “ ” ——"not well-formed", , google “ajax not well-formed”, , 。

:http://ajaxagent.org/modules/newbb/viewtopic.php?topic_id=85&forum=1。 :
I finally found the solution to this problem!! That was a very tough one to crack.

For now, in your agent.php, commment out the line
xmlHttpObject.overrideMimeType('text/xml');
So it should look like
//xmlHttpObject.overrideMimeType('text/xml');
I'll fix this one in the next release.

Thanks,
Steve Hemmady
Ajax Agent Team

, xmlHttpObject.overrideMimeType('text/xml'); OK , ajax , firefox 。

 

 

 

좋은 웹페이지 즐겨찾기