0

我对 JSON 感到困惑。

我从 php 得到了这个 JSON 数据(已经解析);

    var json =
    {"id":"1", "name":"AAA", "sex":"m", "age":"20", "region":"X"}
    {"id":"2", "name":"BBB", "sex":"m", "age":"25", "region":"Y"}
    {"id":"3", "name":"CCC", "sex":"f", "age":"30", "region":"Z"}
    {"id":"4", "name":"DDD", "sex":"m", "age":"35", "region":"Q"}

这些是一个变量中的分隔数组。

我想让它们变成这样

    var json1 = {"id":"1", "name":"AAA", "sex":"m", "age":"20", "region":"X"}
    var json2 = {"id":"2", "name":"BBB", "sex":"m", "age":"25", "region":"Y"}
    var json3 = {"id":"3", "name":"CCC", "sex":"f", "age":"30", "region":"Z"}
    var json4 = {"id":"4", "name":"DDD", "sex":"m", "age":"35", "region":"Q"}

我目前正在使用 PHP 开发 Titanium 移动(iOS)。和 PHP 发送这样的 JSON 数据;

    foreach($responses as $response)
    {
        echo encode_json($response);
    }

※$responses 是 sql 命令的结果。

现在 Titanium 端,Titanium 文件将接收并解析它。

    Req.onload = function()
    {
        var json = JSON.stringify(this.responseText);
        var response = JSON.parse(json);
        Ti.API.info(response);
    }

Ti.API.info 在控制台上说;

    [INFO] {"id":"1", "name":"AAA", "sex":"m", "age":"20", "region":"X"}{"id":"2", "name":"BBB", "sex":"m", "age":"25", "region":"Y"}{"id":"3", "name":"CCC", "sex":"f", "age":"30", "region":"Z"}{"id":"4", "name":"DDD", "sex":"m", "age":"35", "region":"Q"}
    //as I wrote it above

对于那些来看 JS 问题但 Titanium 的人,我很抱歉。

4

2 回答 2

3

Do you mean something like this?:

var json =
    {"id":"1", "name":"AAA", "sex":"m", "age":"20", "region":"X"}
    {"id":"2", "name":"BBB", "sex":"m", "age":"25", "region":"Y"}
    {"id":"3", "name":"CCC", "sex":"f", "age":"30", "region":"Z"}
    {"id":"4", "name":"DDD", "sex":"m", "age":"35", "region":"Q"}

var json1 = json[0];
var json2 = json[1];
var json3 = json[2];
var json4 = json[3];
于 2012-05-14T07:39:47.720 回答
3

If your first json is actually an array like this :

var json = [
    {"id":"1", "name":"AAA", "sex":"m", "age":"20", "region":"X"},
    {"id":"2", "name":"BBB", "sex":"m", "age":"25", "region":"Y"},
    {"id":"3", "name":"CCC", "sex":"f", "age":"30", "region":"Z"},
    {"id":"4", "name":"DDD", "sex":"m", "age":"35", "region":"Q"}
];

Then you could split the array into individual variables like this :

for(var i=0,l=json.length;i<l;i++)
    window['json' + (i+1)] = json[i];

Note that declaring a variable in the global scope (like var foo = 'bar') can be done by attaching that name to the window object (window['foo'] = 'bar';);

于 2012-05-14T07:40:43.133 回答