0

Flex3とOpenXを連携させようとしています。SafariとFirefoxではすべてがうまく機能します。しかし、Internet ExplorerでXMLパーサーエラーが発生し、髪の毛を引き裂いてテレビン油を飲みたくなります。

私はできる限り問題を単純化しようとしました。基本的に、私はadReturnを取得し、それをxmlに変換します。

adReturn =  '<adXMLReturn>' + adReturn + '</adXMLReturn>';
xmlReturn = new XML(adReturn);

IEが以下のadReturnを気に入っているとは思いません。

"<adXMLReturn>

<SCRIPT type=text/javascript><!--//<![CDATA[
   var m3_u = (location.protocol=='https:'?'https://www.dcscore.com/openx/www/delivery/ajs.php':'http://www.dcscore.com/openx/www/delivery/ajs.php');
   var m3_r = Math.floor(Math.random()*99999999999);
   if (!document.MAX_used) document.MAX_used = ',';
   document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
   document.write ("?zoneid=4");
   document.write ('&amp;cb=' + m3_r);
   if (document.MAX_used != ',') document.write ("&amp;exclude=" + document.MAX_used);
   document.write (document.charset ? '&amp;charset='+document.charset : (document.characterSet ? '&amp;charset='+document.characterSet : ''));
   document.write ("&amp;loc=" + escape(window.location));
   if (document.referrer) document.write ("&amp;referer=" + escape(document.referrer));
   if (document.context) document.write ("&context=" + escape(document.context));
   if (document.mmm_fo) document.write ("&amp;mmm_fo=1");
   document.write ("'><\/scr"+"ipt>");
//]]>--></SCRIPT>



<SCRIPT type=text/javascript src="http://www.dcscore.com/openx/www/delivery/ajs.php?zoneid=4&amp;cb=42464397192&amp;charset=utf-8&amp;loc=http%3A//www.dcscore.com/"></SCRIPT>

<A href="http://www.dcscore.com/openx/www/delivery/ck.php?oaparams=2__bannerid=1__zoneid=4__cb=80291ee9b3__oadest=http%3A%2F%2Fwww.dcscore.com" target=_blank><IMG title="" border=0 alt="" src="http://www.dcscore.com/openx/www/delivery/ai.php?filename=mybanner.png&amp;contenttype=png" width=468 height=60></A>

<DIV style="POSITION: absolute; VISIBILITY: hidden; TOP: 0px; LEFT: 0px" id=beacon_80291ee9b3><IMG style="WIDTH: 0px; HEIGHT: 0px" alt="" src="http://www.dcscore.com/openx/www/delivery/lg.php?bannerid=1&amp;campaignid=1&amp;zoneid=4&amp;loc=http%3A%2F%2Fwww.dcscore.com%2F&amp;cb=80291ee9b3" width=0 height=0></DIV><NOSCRIPT></NOSCRIPT></adXMLReturn>"

誰かがadReturnに問題を見つけましたか?ヘルプ!

ありがとうございました!

-ラクシュミディ

4

1 に答える 1

1

それはとても明白です-XMLはとても美しくて読みやすいので、あなたがそれを見逃したかもしれないことに私は驚いています-それはこれまでで最高のものです:P

XML Parsing Error: not well-formed
Line Number 3, Column 14
<SCRIPT type=text/javascript><!--//<![CDATA[
-------------^

XMLはさておき、冗談はさておき、問題が発生したときに読み通すのは醜くて苦痛です。そのため、JSONとさらに優れたYAMLがあります。これは、人間とコンピューターの両方が扱いやすいデータを効率的に保存および転送する方法です。

とにかく、これが私が問題を見つけた方法です:XMLバリデーター 人生の早い段階で髪を失うのを避けるために、次回それを使用してください。

于 2010-06-05T00:27:50.077 に答える