多くの値をjsonの単一キーに格納する必要があります。例えばjsonの単一キーに複数の値を格納
{
"number" : "1","2","3",
"alphabet" : "a", "b", "c"
}
このようなものです。すべてのポインタ?
多くの値をjsonの単一キーに格納する必要があります。例えばjsonの単一キーに複数の値を格納
{
"number" : "1","2","3",
"alphabet" : "a", "b", "c"
}
このようなものです。すべてのポインタ?
使用アレイ:
{
"number": ["1", "2", "3"],
"alphabet": ["a", "b", "c"]
}
あなたがアクセス配列内での位置が異なる値をすることができます。 0の配列の左から数え始めますmyJsonObject["number"][0] == 1
またはmyJsonObject["alphabet"][2] == 'c'
{
"number" : ["1","2","3"],
"alphabet" : ["a", "b", "c"]
}
{
"success": true,
"data": {
"BLR": {
"origin": "JAI",
"destination": "BLR",
"price": 127,
"transfers": 0,
"airline": "LB",
"flight_number": 655,
"departure_at": "2017-06-03T18:20:00Z",
"return_at": "2017-06-07T08:30:00Z",
"expires_at": "2017-03-05T08:40:31Z"
}
}
};
json構文解析でアクセスするにはどうすればいいですか? –
@Johnson 'var jsObject = JSON.parse(jsonData);'この時点で、変数 'jsObject'には正常にアクセスできます。 –
ここに私の質問ですあなたはそれをチェックすることができますhttp://stackoverflow.com/questions/27424584/how-to-use-multiple-values-in-single-key-in-json-parsing?noredirect=1#comment43299243_27424584 –