开发者

how to read the data from the JSP in a MXML through actionscript?

We are collecting the data at run time in Collection object in JSP page. We want to read this data from the JSP in a MXML through actionscript. pls share the sample if you开发者_如何学JAVA have.

thanks, Sudarshan


function loadData():void
{
  var ldr:URLLoader = new URLLoader();
  var request:URLRequest = new URLRequest("page.jsp");
  ldr.addEventListener(Event.COMPLETE, onLoad);
  ldr.load(request);
}
private function onLoad(e:Event):void
{
  var ldr:URLLoader = URLLoader(e.target);
  trace(ldr.data);//traces the loaded string
  //if the data is xml
  /*
  var myxml:XML = new XML(ldr.data);
  trace(myxml.toXMLString());
  */
  //update: answer to the comment:
  //If the input string just lacks a root tag from being valid xml, 
  //you can introduce a dummy root tag.
  var myxml:XML = new XML("<root>" + ldr.data + "</root>");
  trace(myxml.data.toString());  //Hello
  trace(myxml.value.toString()); //Hi
}

page.jsp should serialize the collection to appropriate format (xml/json/whatever) and return it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜