0

我正在 flex(flash builder 4.5) 中制作一个小项目,用户可以在其中搜索书籍。目前我可以获得书籍(我使用谷歌书籍 api),但我以 JSON 格式接收它。

我想在 xml 中得到这个,所以我可以在数据网格中显示一些字段。

到目前为止,我已经下载了 as3corelib 并将其链接到我的项目。但我不知道如何解码 JSON。JSON 示例

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                   xmlns:s="library://ns.adobe.com/flex/spark" 
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   creationComplete="application1_creationCompleteHandler(event)"
                   >
<fx:Script>
    <![CDATA[
        import com.adobe.serialization.json.JSON;

        import mx.controls.Text;
        import mx.events.FlexEvent;
        import mx.rpc.events.ResultEvent;
        [Bindable] private var api_request:String;

        import com.adobe.serialization.json.JSONDecoder;


        protected function application1_creationCompleteHandler(event:FlexEvent):void
        {
            // TODO Auto-generated method stub
            btnSearch.addEventListener(MouseEvent.CLICK, Zoek);
        }

        protected function Zoek(event:MouseEvent):void
        {
            // TODO Auto-generated method stub
            var api_url:String='https://www.googleapis.com/books/v1/volumes?q=';
            var api_tag:String=search.text;

            api_request= api_url + api_tag

            GoogleBooks.send(); 


        }

        protected function GoogleBooks_resultHandler(event:ResultEvent):void
        {

            txtResult.text=event.result as String;
            //JSONDecoder(txtResult.text);

        }

    ]]>
</fx:Script>
<fx:Declarations>
    <s:HTTPService id="GoogleBooks" url="{api_request}" resultFormat="text" result="GoogleBooks_resultHandler(event)" />


</fx:Declarations>
<s:Button x="175" y="40" label="Button" id="btnSearch"/>
<s:TextInput x="26" y="38" id="search"/>

<s:TextArea id="txtResult" x="32" y="112" width="539" height="312"/>
</s:WindowedApplication>

所以我的问题是:如何解码 JSON,以便在我的 Textarea 中看到 xml?

4

1 回答 1

0

这取决于您希望如何使用数据。你可以简单地做

var data:Object = JSON.decode(jsonString);

或者你可以使用 JSONDecoder 类来做同样的事情:

var decoder:JSONDecoder = new JSONDecoder(jsonString, jsonStringMatchesStandard);
var data:Object = decoder.getValue();

或者您可以使用 JSONDecoder 按令牌解码字符串令牌:

var decoder:JSONDecoder = new JSONDecoder(jsonString, jsonStringMatchesStandard);
var token:JSONToken = decoder.nextToken();

我建议查看来源的评论,以提供有关如何使用该库的良好指导。

https://github.com/mikechambers/as3corelib/tree/master/src/com/adobe/serialization/json

于 2013-07-24T11:00:29.300 回答