博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP 解析json
阅读量:5070 次
发布时间:2019-06-12

本文共 1342 字,大约阅读时间需要 4 分钟。

第一个方法是使用 JScript : <%  Dim json, obj  json = "{a:""aaa"", b:{ name:""bb"", value:""text"" }, c:[""item0"", ""item1"", ""item2""]}"  Set obj = parseJSON(json)     Response.Write obj.a & "
" Response.Write obj.b.name & "
" Response.Write obj.c.length & "
" Response.Write obj.c.get(0) & "
" Set obj = Nothing %><%set obj1 = ToObject("{aaa:""aaaa"", bbb: ""bbbb""}")Response.Write obj1.aaa & "
"%>

  

第二个方法是使用MS的脚本控件(也一样是使用了 JScript):

 

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 & "
" Response.Write obj.b.name & "
" Response.Write obj.c.length & "
" Response.Write obj.c.get(0) & "
" Set obj = Nothing Set scriptCtrl = Nothing

  

转载于:https://www.cnblogs.com/wgscd/p/10954260.html

你可能感兴趣的文章
自定义tabbar(纯代码)
查看>>
小程序底部导航栏
查看>>
poj1611 简单并查集
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>
跨平台开发 -- C# 使用 C/C++ 生成的动态链接库
查看>>
C# BS消息推送 SignalR介绍(一)
查看>>
WPF星空效果
查看>>
WPF Layout 系统概述——Arrange
查看>>
PIGOSS
查看>>
几款Http小服务器
查看>>
openSuse beginner
查看>>
Codeforces 620E(线段树+dfs序+状态压缩)
查看>>
css3动画属性
查看>>
Mongodb 基本命令
查看>>
控制文件的备份与恢复
查看>>
软件目录结构规范
查看>>
mysqladmin
查看>>
解决 No Entity Framework provider found for the ADO.NET provider
查看>>
设置虚拟机虚拟机中fedora上网配置-bridge连接方式(图解)
查看>>
[置顶] Android仿人人客户端(v5.7.1)——人人授权访问界面
查看>>