如何在這個JSON中存取行李資訊?
P粉401527045
2023-07-28 14:50:26
<p>如何在這個JSON中存取行李資訊? </p>
<pre class="brush:php;toolbar:false;">{
"Response": {
"Results": [
[{
"Segments": [
[{
"Baggage": "2 PC(s)"
}
]
]
}]
]
}
}</pre>
<p>如果我執行Results.Segments.Baggage,控制台沒有輸出任何內容,請告訴我如何從這個嵌套的JSON中獲取行李資訊。 </p>
根據您的JSON,Results和Segments中都有一個雙重陣列。
Response.Results[0][0].Segments[0][0].Baggage