説明と目標: データは、2分ごとにJSONデータに常に生成されます。私がする必要があるのは、提供されたJSONデータから情報を取得することです。データは絶えず変化します。情報が解析されたら、他の関数で使用できる変数に情報を取り込む必要があります。JSONデータを解析するためのルーピング
私が悩んでいるのは、後で関数で使用できるストアド変数にすべてのデータを再割り当てするループを使用して関数を作成する方法です。
例情報:
var json = {"data":
{"shop":[
{
"carID":"7",
"Garage":"7",
"Mechanic":"Michael Jamison",
"notificationsType":"repair",
"notificationsDesc":"Blown Head gasket and two rail mounts",
"notificationsDate":07/22/2011,
"notificationsTime":"00:02:18"
},
{
"CarID":"8",
"Garage":"7",
"Mechanic":"Tom Bennett",
"notificationsType":"event",
"notifications":"blown engine, 2 tires, and safety inspection",
"notificationsDate":"16 April 2008",
"notificationsTime":"08:26:24"
}
]
}};
function GetInformationToReassign(){
var i;
for(i=0; i<json.data.shop.length; i++)
{
//Then the data is looped, stored into multi-dimensional arrays that can be indexed.
}
}
だからエンディングの結果はこのようにする必要があります:
shop[0]={7,7,"Michael Jamison",repair,"Blown Head gasket and two rail mounts", 07/22/2011,00:02:18 }
ショップ[1] = {}
あなたは本当に簡単[JSON-構文]を見ている必要があります(http://www.json.org/) – Saxoier