我正在通过php urlencode函数传递一个已经base64编码的url。我基本上把它作为动作脚本中的字符串拿起来,所以我不需要加载任何类型的文件。然后我需要将该字符串解码为xml对象。代码如下:
urlStr = InParameters.md; //this is the incoming encoded url
var Base64:Base64Decoder = new Base64Decoder;
var myXML:XML = new XML(Base64.decode(urlStr));
trace("My XML", myXML)
我的xml对象空了,所以我显然遗漏了一些东西。任何见解将不胜感激。