使用 VBA 和 JSON 解析嵌套数组

1 arrays excel ms-access vba json

我有一个试图在 VBA 中解析的 JSON。我已成功解析出“报价”数组。在“offer”数组内是另一个数组“prices”“USD”。

问题是并非每个“offers”对象都有“USD”数组。我正在尝试创建一个可以用来制作表格/工作表的对象,但我什至无法在调试模式下打印这些对象。这有效但失败了,因为并非每个 Dict OfferDetails 都包含“USD”对象。

我想要做的是能够打印字符串,如果缺少“USD”对象,只需跳过它,只打印具有“USD”的对象。我已经尝试过 IsMissing(在代码中),但是当它遇到丢失的“USD”对象时失败了。

知道如何使用“USD”值获取此字符串吗?请注意,“USD”是一个数组并包含多个对象,但我也不知道如何处理它们。理想情况下,我想以与“报价”相同的方式解析“美元”。我完全迷失了,因为我不太擅长 VBA

这是一个具有有效 Web JSON 的工作脚本。

  Sub getJSONEP_lib_working()
      'Need the JsonConverter found here https://github.com/VBA-tools/VBA-JSON
      'Need the Microsoft Scripting Runtime 

      Dim Parsed As Dictionary
      Dim Item As Dictionary
      Dim OfferDetails As Dictionary
      Dim Price As Dictionary
      Dim USD As Dictionary

              URL = "http://wraymac.com/JSON/example1.json"
              url2 = "[{" & """mpn""" & ":" & """41202""" & "}]"

              Set MyRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
              MyRequest.Open "GET", URL
              MyRequest.Send

              JsonString = MyRequest.ResponseText

              Dim json As Object
              Set json = JsonConverter.ParseJson(JsonString)


      Set Parsed = JsonConverter.ParseJson(MyRequest.ResponseText)

         For Each Item In Parsed("results")(1)("items")
           For Each OfferDetails In Item("offers")


      'I tried this it doesn't work, it fails when it finds a non existent "USD"
            If Not IsMissing(OfferDetails("prices")("USD")(1)(1)) Then
            Debug.Print OfferDetails("prices")("USD")(1)(1)
            Else
            Debug.Print "Missing"
            End If


      x = Item("mpn") & "   " & "sku" & " - " & OfferDetails("sku") & "," & "UID" & " - " & OfferDetails("seller")("uid") & "   " & OfferDetails("moq") & "packaging" & " = " & OfferDetails("packaging") & "  " & OfferDetails("seller")("name") & "  " & Item("manufacturer")("name")
      Debug.Print x

      'This works but fails because not every Dict OfferDetails contains the "USD" object
      'x = Item("mpn") & "   " & "sku" & " - " & OfferDetails("sku") & "," & "UID" & " - " & OfferDetails("seller")("uid") & "   " & OfferDetails("moq") & "packaging" & " = " & OfferDetails("packaging") & "  " & OfferDetails("seller")("name") & "  " & Item("manufacturer")("name")& "  "&OfferDetails("prices")("USD")(1)(1)

       Next OfferDetails
           Next

      End Sub
Run Code Online (Sandbox Code Playgroud)

Tim*_*ams 6

你想使用字典的Exists方法:

Set Parsed = JsonConverter.ParseJson(MyRequest.ResponseText)

For Each Item In Parsed("results")(1)("items")
    For Each OfferDetails In Item("offers")

            If OfferDetails("prices").Exists("USD") Then
                Debug.Print OfferDetails("prices")("USD").Count & " items:"
                Debug.Print "-----------------"
                For Each x In OfferDetails("prices")("USD")
                    Debug.Print x(1), x(2)
                Next x
                Debug.Print "-----------------"
            Else
                Debug.Print "No USD"
            End If

     Next OfferDetails
 Next
Run Code Online (Sandbox Code Playgroud)

转换器将对象 ({}) 解析为字典,将数组 ([]) 解析为集合,因此您可以使用它Count来确定每种类型的对象中的项目数。