ASP JSON:多维JSON数组
ASP JSON: Multidimensional JSON array
我应该如何访问此 JSON 中的 "games" 数组?我正在使用 http://aspjson.com 中的 class。
{
"period":[
{
"period_id":"1774",
"start_time_epoch":1431126300,
"games":[
{
"home_team":"WSH",
"away_team":"ATL"
}
]
}
]
}
获取方式:
today = date
For Each key In oJSON.data("period")
Set this = oJSON.data("period").item(key)
periodID = this.item("period_id")
periodDate = FormatDateTime(DateAdd("s", this.item("start_time_epoch"), "01/01/1970 00:00:00"),2)
----Ideally, this.item("games").item("home_team") would have worked.----
if cstr(today) = periodDate then
response.write periodID & " - " & periodDate & "<br/> - " & this.item("games").item("start_time")
end if
Next
您的 JSON 无效:http://jsonformatter.curiousconcept.com/
这将是有效的:
{
"period":[
{
"period_id":"1774",
"start_time_epoch":1431126300,
"games":[
{
"home_team":"WSH",
"away_team":"ATL"
}
]
}
]
}
要访问主队,您可以使用
Response.Write( oJSON.data("period")(0)("games")(0)("home_team"))
我应该如何访问此 JSON 中的 "games" 数组?我正在使用 http://aspjson.com 中的 class。
{
"period":[
{
"period_id":"1774",
"start_time_epoch":1431126300,
"games":[
{
"home_team":"WSH",
"away_team":"ATL"
}
]
}
]
}
获取方式:
today = date
For Each key In oJSON.data("period")
Set this = oJSON.data("period").item(key)
periodID = this.item("period_id")
periodDate = FormatDateTime(DateAdd("s", this.item("start_time_epoch"), "01/01/1970 00:00:00"),2)
----Ideally, this.item("games").item("home_team") would have worked.----
if cstr(today) = periodDate then
response.write periodID & " - " & periodDate & "<br/> - " & this.item("games").item("start_time")
end if
Next
您的 JSON 无效:http://jsonformatter.curiousconcept.com/
这将是有效的:
{
"period":[
{
"period_id":"1774",
"start_time_epoch":1431126300,
"games":[
{
"home_team":"WSH",
"away_team":"ATL"
}
]
}
]
}
要访问主队,您可以使用
Response.Write( oJSON.data("period")(0)("games")(0)("home_team"))