标签: actionscript-3 eval
我该怎么做?这就是我所拥有的:
function send(input):void{ // input.text = "{key: 'value'}" var x:* = stringToObject(input.text) // then be able to do this var y:* = x.key; // then y must be equal to 'value' trace(y) // this is just a string }
答案 0 :(得分:2)
您需要包含JSON库才能将JSON字符串解析为对象。
参考as3corelib库以获取更多信息。