<script language="JScript" runat="Server">
function toObject(json) {
    eval("var o=" + json);
    return o;
}
</script>

<%
Dim json
json = "[{'uid':'1','username':'abc','email':'123@163.com'},{'uid':'2','username':'abc2','email':'1234@163.com'}]"
Set json = toObject(json)
 
for each obj in json
Response.Write obj.uid & "<br/>"
Response.Write obj.username & "<br/>"
Response.Write obj.email & "<br/>"
next
Set json = Nothing
%>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2021-10-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
  • 2021-12-13
  • 2022-12-23
相关资源
相似解决方案