搜尋

首頁  >  問答  >  主體

如何在這個JSON中存取行李資訊?

<p>如何在這個JSON中存取行李資訊? </p> <pre class="brush:php;toolbar:false;">{ "Response": { "Results": [ [{ "Segments": [ [{ "Baggage": "2 PC(s)" } ] ] }]        ]     } }</pre> <p>如果我執行Results.Segments.Baggage,控制台沒有輸出任何內容,請告訴我如何從這個嵌套的JSON中獲取行李資訊。 </p>
P粉401527045P粉401527045530 天前535

全部回覆(1)我來回復

  • P粉071602406

    P粉0716024062023-07-29 10:33:22

    根據您的JSON,Results和Segments中都有一個雙重陣列。

    Response.Results[0][0].Segments[0][0].Baggage 

    回覆
    0
  • 取消回覆