ASP读取JSON数组的问题。求解啊!!!!

JSON的数组为:{"date":"周四08月07日(实时:2)","weather":"晴","wind":"微风","temperature":"21"},{"dat... JSON的数组为:
{"date":"周四 08月07日 (实时:2)","weather":"晴","wind":"微风","temperature":"21"},{"date":"周五","weather":"多云","wind":"微风","temperature":"31 ~ 22"},{"date":"周六","weather":"多云转阴","wind":"微风","temperature":"30 ~ 22"},{"date":"周日","weather":"阴转晴","wind":"微风","temperature":"31 ~ 22"}

这里面有多个date和weather等值

请问我怎么用ASP循环出来这些值呢?
我现在是这样做的
<script language="JScript" runat="Server">
function toObject(json) {
eval("var o=" + json);
return o;
}
</script>
<%
Dim json
json = "上面那些JSON数组"
Set json = toObject(json)
Response.Write json.date ‘这里目前只能读出到一个DATE
Set json = Nothing
%>

我实在是没分了。急求!!!!
展开
 我来答
joychen_
推荐于2017-11-26 · TA获得超过1747个赞
知道大有可为答主
回答量:1617
采纳率:100%
帮助的人:1820万
展开全部
<script language="JScript" runat="Server">
function ToObject(json) {
    var o;
    eval("o=" + json);
    return o;
}
function toArray(s){
    var dic = Server.CreateObject("Scripting.Dictionary")
    eval("var a=" + json);
    for(var i=0;i<a.length;i++){
        var obj = Server.CreateObject("Scripting.Dictionary")
        for(x in a[i]) obj.Add(x,a[i][x])
        dic.Add(i, obj);
    }
    return dic
}
</script>
<%
json = "[{""date"":""周四 08月07日 (实时:2)"",""weather"":""晴"",""wind"":""微风"",""temperature"":""21""},{""date"":""周五"",""weather"":""多云"",""wind"":""微风"",""temperature"":""31 ~ 22""},{""date"":""周六"",""weather"":""多云转阴"",""wind"":""微风"",""temperature"":""30 ~ 22""},{""date"":""周日"",""weather"":""阴转晴"",""wind"":""微风"",""temperature"":""31 ~ 22""}]"

Set ob = toArray(json)
For i=0 To ob.Count-1
  Response.Write ob(i)("date") & " <br/>" 
next

Set ob = Nothing
%>

注意JSON字符串前后的 [ ]

莫百无0c
2014-08-08
知道答主
回答量:1
采纳率:0%
帮助的人:1338
展开全部
$.each(data.json, function (i,r) {var xx=r.xxxx
var xxx=r.xxxxx})
http://blog.csdn.net/songylwq/article/details/6047609
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式