Firefox에서 "조직되지 않은"오류가 발생하는 해결 방법
3820 단어 firefox
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 。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Firefox 애드온을 직접 게시(self hosted)하는 방법Firefox 확장 프로그램을 게시하려는 경우 상점에 신청하고 게시하는 것이 일반적인 방법이지만 게시 조건을 충족해야 합니다. 예를 들어, 사내 응용 프로그램을 사용하여 직원만이 사용하는 확장 기능의 경우, 용도와 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.