我正在学习 android 中的 Volley 库。我正在使用 JsonObjectRequest 将 JsonObject 作为请求参数传递,并且我在JsonObjectRequest 的错误侦听器代码中以 JsonArray 的形式获得响应,检查 Logcat 中图像错误中的第 84 行。
任何人都可以帮助我解决这个问题,如何通过将 JsonObject 作为请求参数来获取 JsonArray 作为响应。
我正在学习 android 中的 Volley 库。我正在使用 JsonObjectRequest 将 JsonObject 作为请求参数传递,并且我在JsonObjectRequest 的错误侦听器代码中以 JsonArray 的形式获得响应,检查 Logcat 中图像错误中的第 84 行。
任何人都可以帮助我解决这个问题,如何通过将 JsonObject 作为请求参数来获取 JsonArray 作为响应。
用于在响应JsonArrayRequest
中捕获Array
JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(
Request.Method.POST,
"http://lanes-dev.cloudapp.net/api/DiaryTweetLineApi/LoadDiaryTweetLinesByUser",
obj,
new Response.Listener<JSONArray>() {
@Override
public void onResponse(JSONArray response) {
}
},
new Response.ErrorListener(){
@Override
public void onErrorResponse(VolleyError error){
// Do something when error occurred
}
}
);