我对 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 的人,我很抱歉。