|
14精币
{"page":{"number":1,"capacity":10,"total":1,"dataList":[{"createTime":"2024-06-15 07:37:54","checkInfo":"{1:\"35.1\",2:\"167\",3:\"62\",5:\"98\",6:\"73\",7:\"118\",8:\"65\",9:\"78\",10:\"86\",4:\"22.2\",unrin:false,ecg:true}","organization":{"isUse":"1"},"patientId":"897","integrity":"0","checkstate":",测试,"}],"conditions":{"checktimeStart":"2024-06-01 00:00:00"},"orders":["-checktime"],"dataClass":null,"expression":"organization","include":null,"exclude":null,"first":0}}
有一段json如上,如何取出"checkInfo":"{1:\"35.1\",2:\"167\",3:\"62\",5:\"98\",6:\"73\",7:\"118\",8:\"65\",9:\"78\",10:\"86\",4:\"22.2\",unrin:false,ecg:true}中:123456789分别对应的值与createTime对应的值展示到超级列表框中?主要是不知道checkInfo中的怎么取。
|
最佳答案
查看完整内容
用习惯了 zyjson,现在你用精易的json类,操作一样的。
需要注意的是:checkInfo里面是文本来的。 还需要再次解析的
[e=1].版本 2
.支持库 spec
.子程序 _按钮83_被单击
.局部变量 json, zyJsonDocument
.局部变量 json2, zyJsonDocument
.局部变量 i, 整数型
json.解析 (#常量9, , , )
.计次循环首 (json.取成员数 (“page.dataList”), i)
' 再次json解析一下checkInfo
json2.解析 (json.取文本 (“page.dataList[” ...
|