2012-05-15 51 views
0

我有node.js的REST API,它返回下面的對象如何分析node.js的REST API對象的ActionScript3

[ 
     { 
      "word": "word" 
     }, 
     { 
      "word": "ability" 
     }, 
     { 
      "word": "about" 
     } 
] 

可有人請告訴我如何在ActionScript3的SDK4.6

解析此對象

在此先感謝!

+0

像JSON響應一樣,您可以使用as3corelib http://code.google.com/p/as3corelib/庫 –

回答

4

JSON解析包含在默認包中。

var json:Object = JSON.parse("[{\"word\": \"word\"},{\"word\": \"ability\"},{\"word\": \"about\"}]"); 

json

默認JSON解析比的as3corelib實現性能更高。

+0

JSON解析性能比較:http://stackoverflow.com/questions/7816784/load-json-faster-在柔性-4/7817042#7817042 –