이 기사에서는 asp를 사용하여 json 문자열을 구문 분석하는 방법을 소개합니다. asp의 json 처리가 php만큼 간단하지 않고 키-값 쌍 배열이 없다는 것은 누구나 알고 있습니다. 이것이 결국 php로 대체된 직접적인 이유일 수 있습니다. .
다음 코드는 제가 테스트했으며 사용 가능합니다.
코드는 다음과 같습니다.
Dim scriptCtrl Function parseJSON(str) If Not IsObject(scriptCtrl) Then Set scriptCtrl = Server.CreateObject("MSScriptControl.ScriptControl") scriptCtrl.Language = "JScript" scriptCtrl.AddCode "Array.prototype.get = function(x) { return this[x]; }; var result = null;" End If scriptCtrl.ExecuteStatement "result = " & str & ";" Set parseJSON = scriptCtrl.CodeObject.result End Function Dim json json = "{a:""aaa"", b:{ name:""bb"", value:""text"" }, c:[""item0"", ""item1"", ""item2""]}" Set obj = parseJSON(json) Response.Write obj.a & "<br />" Response.Write obj.b.name & "<br />" Response.Write obj.c.length & "<br />" Response.Write obj.c.get(0) & "<br />" Set obj = Nothing Set scriptCtrl = Nothing
이 기사는 PHP 중국어 웹사이트
기사 주소: http://www.php.cn/에서 제공됩니다. csharp-article-377133.html
학습 프로그래밍에 대해서는 PHP 중국어 웹사이트 www.php.cn
위 내용은 ASP가 json 문자열을 구문 분석하고 이를 asp 개체로 변환하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!