2016-03-03 90 views
1

我試圖抓住featured_image的url。我如何去做這件事?獲取第一個JSON結果

結果[ 「featured_image」] ...

featured_image: [ 
"http://192.168.23.23/wp-content/uploads/2016/03/formal_table.jpg", 
984, 
500, 
false 
] 
+1

'result [「featured_image」] [0]'?真的不清楚你在問什麼。 –

+1

你試過'結果[「featured_image」] [0]'。 – vcp

回答

1

由於featured_imagearray您可以使用以下

result["featured_image"][0] 

訪問URL,這是在第零指數那array

+0

當我鍵入結果[「featured_image」]它輸出[「http://192.168.23.23/wp-content/uploads/2016/03/formal_table.jpg」,984,500,false] ..當我鍵入結果[ 「featured_image」] [0]我只收到一個錯誤,它不允許我訪問第一個項目。 – Michael

+0

@Michael它應該工作。你得到的錯誤是什麼? –

+0

@Michael你的數組似乎無效。網址之後你看到半透明嗎? '........ table.jpg「;,' –