gpt4 book ai didi

json - 将 Json 字符串解析为经典 ASP 页面

转载 作者:行者123 更新时间:2023-12-02 10:08:52 26 4
gpt4 key购买 nike

使用库将 json 字符串解析为经典 asp 的最佳方法是什么?

Dim jsonString
jsonString = {"date":"4/28/2017","custType":"100","vehicle":"1"}

想要拥有

response.write("<li> date :" & json("date") & "</li>")

最佳答案

开始工作了:

使用https://github.com/rcdmk/aspJSON

Dim jsonString
jsonString = {"date":"4/28/2017","custType":"100","vehicle":"1"}

Dim jsonObj, outputObj
set jsonObj = new JSONobject
set outputObj = jsonObj.parse(jsonString)

response.write("<li> date :" & outputObj("date") & "</li>")
response.write("<li> custType :" & outputObj("custType") & "</li>")
response.write("<li> vehicle :" & outputObj("vehicle") & "</li>")

如果您需要迭代单个对象,请使用outputObj.pairs

Dim props, prop
props = outputObj.pairs
for each prop in props
response.write prop.name & " : " & prop.value & "<br>"
next

引用https://github.com/rcdmk/aspJSON/issues/20

关于json - 将 Json 字符串解析为经典 ASP 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43690292/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com