【发布时间】:2016-02-28 18:27:09
【问题描述】:
有人可以帮助使用 Access VBA 代码来解析以下 json 文本吗?我需要检索作者、标题、评论、original_title、original_review、stars、iso、版本、日期、产品、重量和 id 的值,然后循环到下一个条目和下一个条目。
{
"total": 140,
"pages": 28,
"this_page": 1,
"reviews": [{
"author": "DeveloperToDeveloper",
"title": "Just Spectacular",
"review": "Finally able to remove the ads! The description is hilarious!! Thanks!!!",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.2",
"date": "2012-09-19T17:05:00",
"product": 6567,
"weight": 0,
"id": "5561747L7xnbsMRu8UbPvy7A71Dv6A=="
}, {
"author": null,
"title": "Boat finder",
"review": "Very good app for my use, regrefully does not Search vessel by name.",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.32",
"date": "2012-08-10T21:15:56",
"product": 5561747,
"weight": 0,
"id": "008bVy7L7xnbsMRu8UbPvy7xx1Dv6A=="
}, {
"author": "Dito",
"title": "Boat finder",
"review": "Very good app for my use, regrefully does not Search vessel by name.",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "US",
"version": "1.32",
"date": "2012-08-10T21:15:56",
"product": 5561,
"weight": 0,
"id": "5561747L7xhfgdbs09oyvy7A71Dv6A"
}, {
"author": "KTM SX",
"title": "À quand le deuxième épisode",
"review": "Super une maj pour d'autre decore et autre",
"original_title": null,
"original_review": null,
"stars": "5.00",
"iso": "FR",
"version": "1.2",
"date": "2012-07-19T13:58:00",
"product": 5858,
"weight": 0,
"id": "5561747L7xnbsMRu8UbP9s9s754gdt"
}]
}
【问题讨论】:
-
我的 json 有这个标签 { "total": 140, "pages": 28, "this_page": 1, "reviews": [ 我需要遍历数据
标签: json vba ms-access ms-access-2013