1. ホーム
  2. Web プログラミング
  3. ASP プログラミング
  4. アプリケーションのヒント

JSONデータを扱うASP実装コード

2022-01-16 02:12:27

ASPでもJSONデータを扱えるんですか?ああ、ちょうどPjblogフォーラムで兄弟によって書かれた記事を見た、テストしなかったが、理論的には可能でなければならない〜遅すぎる、テストしない。

今までのJSONの処理が面倒くさすぎて、出力はいいんだけど、ループができたり、パースが本当に頭痛の種。だから、この種の問題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
  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:[""[email protected]"","" [email protected]""], family:{parents:[""father"",""mother""],toString:function(){ return ""family member"";}}}"
Dim objTest
Call InitScriptControl
Set objTest = getJSONObject(strTest)
%>
<%=objTest.name%> the email address is < %=sc4Json.Eval("jsonObject.email[0]")%> <br /> total email address< %=objTest.email.length%& gt;pcs<br />
<%
Dim father
getJSArrayItem father, objTest.family.parents, 0
Response.Write father
%>

ASPでのJSON処理に関するその他の記事はこちら