我想在我的代碼中使用Volley哪些請求類型應該用於我的響應下面我無法理解。 URL ::: http://localhost/api/product/read.php排球JSON響應
{
"data":[
{
"category_id":"1",
"category_name":"Today's Recipe",
"recipes":[
{
"id":"1",
"recipe_name":"Peanut, and Chilli Noodles",
"ingredients":"Serves: 4 \r\n\r\n250g (9 oz) fresh Chinese ,
"prepration":"Prep:15min Cook:10min Ready in:25min \r\n\r\nCook
noodles in a large pot of boiling water until done. have
chilli paste, use minced red chilli to taste."
}
]
},
這似乎是一個JSON對象,所以你應該使用一個JsonObjectRequest https://developer.android.com/training/volley/request.html – joao86
你應該使用JsonRequest。請參閱我在本博客上的回答: https://stackoverflow.com/questions/47936955/i-am-unable-to-make-a-network-call-using-volley-i-have-tried-many-solutions -but/47937120#47937120 –
當我使用jsonobject請求時,出現以下錯誤顯示::: com.android.volley.ParseError:org.json.JSONException:值java.lang.String類型的連接無法轉換爲JSONObject –