[點(diǎn)晴永久免費(fèi)OA]ASP 處理JSON數(shù)據(jù)的實(shí)現(xiàn)代碼
ASP也能處理JSON數(shù)據(jù)?呵呵,剛才在Pjblog論壇上看到一個(gè)兄弟寫的文章,沒有測試,不過理論上一定是可以的~ 太晚了,不測試了。 以前處理JSON太麻煩了,輸出還好說,循環(huán)一下就可以了,解析真的很頭疼。所以遇到 這種問題API問題,一般都是XML處理,不太喜歡,很麻煩。 <% Dim sc4Json Sub InitscriptControl Set sc4Json = Server.createObject("MSscriptControl.scriptControl") sc4Json.Language = "Javascript" sc4Json.AddCode "var itemTemp=null;function getJSArray(arr, index){itemTemp=arr[index];}" End Sub Function getJSONObject(strJSON) sc4Json.AddCode "var jsonObject = " & strJSON Set getJSONObject = sc4Json.CodeObject.jsonObject End Function Sub getJSArrayItem(objDest,objJSArray,index) On Error Resume Next sc4Json.Run "getJSArray",objJSArray, index Set objDest = sc4Json.CodeObject.itemTemp If Err.number=0 Then Exit Sub objDest = sc4Json.CodeObject.itemTemp End Sub Dim strTest strTest = "{name:""alonely"", age:24, email:[""ycplxl1314@163.com"",""ycplxl1314@gmail.com""], family:{parents:[""父親"",""母親""],toString:function(){return ""家庭成員"";}}}" Dim objTest Call InitscriptControl Set objTest = getJSONObject(strTest) %> <%=objTest.name%>的郵件地址是< %=sc4Json.Eval("jsonObject.email[0]")%><br />共有郵件地址< %=objTest.email.length%>個(gè)<br /> <% Dim father getJSArrayItem father, objTest.family.parents, 0 Response.Write father %> 該文章在 2022/6/21 11:04:56 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |