我試圖抓住featured_image的url。我如何去做這件事?獲取第一個JSON結果
結果[ 「featured_image」] ...
featured_image: [
"http://192.168.23.23/wp-content/uploads/2016/03/formal_table.jpg",
984,
500,
false
]
我試圖抓住featured_image的url。我如何去做這件事?獲取第一個JSON結果
結果[ 「featured_image」] ...
featured_image: [
"http://192.168.23.23/wp-content/uploads/2016/03/formal_table.jpg",
984,
500,
false
]
由於featured_image
是array
您可以使用以下
result["featured_image"][0]
訪問URL
,這是在第零指數那array
。
當我鍵入結果[「featured_image」]它輸出[「http://192.168.23.23/wp-content/uploads/2016/03/formal_table.jpg」,984,500,false] ..當我鍵入結果[ 「featured_image」] [0]我只收到一個錯誤,它不允許我訪問第一個項目。 – Michael
@Michael它應該工作。你得到的錯誤是什麼? –
@Michael你的數組似乎無效。網址之後你看到半透明嗎? '........ table.jpg「;,' –
'result [「featured_image」] [0]'?真的不清楚你在問什麼。 –
你試過'結果[「featured_image」] [0]'。 – vcp