我有一个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);
我该如何解决这个问题?
答案 0 :(得分:12)
This blog entry表明以下内容可行:
var sText:String = "<your-xml-here />";
var xData:XML = XML(sText);
答案 1 :(得分:4)
要添加Tomalak的评论,您还可以简单地定义:
var xData: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>;