我有一个
XML格式的字符串,我想将此字符串用作flex XML类型,如下所示:
这是我的字符串:
<Graph> <Node id="1" name="1" nodeColor="0x333333" nodeIcon="center" x="10" y="10" /> <Node id="2" name="2" nodeColor="0x333333" nodeIcon="center" x="10" y="10" /> <Node id="3" name="3" nodeColor="0x333333" nodeIcon="center" x="10" y="10" /> </Graph>
我不能将它传递给API,它抱怨这是字符串,它需要一个XML类型.如何以最小的努力将此字符串转换为XML,即:不迭代字符串和节点等.是否有这样的方法:var data:XML = new XML(str:String);
我怎么解决这个问题?