gpt4 book ai didi

java.lang.IllegalStateException : Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $ - Retrofit 2 Android kotlin 错误

转载 作者:行者123 更新时间:2023-12-05 00:18:51 24 4
gpt4 key购买 nike

我是 kotlin android 的新手。我想在我的 recyclerView 中获取订单列表。这是我的 json 响应:

{
"orders": [
{
"id": "be67f572-0305-4c8f-a2c5-d07a10cd9860",
"totalCount": 2,
"totalPrice": 50.16000,
"orderNumber": 1007
},
{
"id": "9a661a3e-8428-4930-bb0e-30a59a7b6e1f",
"totalCount": 5,
"totalPrice": 337.21000,
"orderNumber": 1014
},
{
"id": "59fa6488-7740-43f7-8985-833987ce4a6c",
"totalCount": 5,
"totalPrice": 337.21000,
"orderNumber": 1016
}
]
}

我已经像这样创建了我的 POJO :

data class OrderInQueue(
var orders: List<Order>
) {
data class Order(
var id: String,
var orderNumber: Int,
var totalCount: Int,
var totalPrice: Double
)
}

这是我的 api 网络服务代码:

 @GET("api/v1/shopper/orders/feed")
fun getOrderList (@Header("Authorization") authHeader:String) : Call<List<OrderInQueue>>

MainActivity改造代码:

 private fun loadOrders() {
//initiate the service
val destinationService = ServiceBuilder.getRetrofitInstance().create(WebService::class.java)
val requestCall = destinationService.getOrderList("Bearer "+sessionManager.GetAccessToken())
//make network call asynchronously
requestCall.enqueue(object : Callback<List<OrderInQueue>> {
override fun onResponse(
call: Call<List<OrderInQueue>>,
response: Response<List<OrderInQueue>>
) {
Log.d("Response", "onResponse: ${response.body()}")
if (response.isSuccessful) {
val orderList = response.body()?.toMutableList()
// Log.d("Response", "countrylist size : ${countryList.size}")
orderRecyclerView.apply {
setHasFixedSize(true)
layoutManager = LinearLayoutManager(this@MainActivity)
adapter = orderList?.let { orderAdapter(it, this@MainActivity) }
}
Log.e( "response","Successful ${response.message()}")
// Log.d("Response", "things : ${things}")
// markButtonenble(iv_next)
} else {
Toast.makeText(
this@MainActivity,
"wrong ${response.message()}",
Toast.LENGTH_SHORT
).show()
Log.e( "response","Something went wrong ${response.message()}")
}
}

override fun onFailure(call: Call<List<OrderInQueue>>, t: Throwable) {
Toast.makeText(this@MainActivity, "Something went wrong $t", Toast.LENGTH_SHORT)
.show()
Log.e( "Response","Something went wrong $t")
}


})
}

但未能获取响应并出现错误:

 java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $

最佳答案

对象{开头,数组开头[实际的响应对象开头,因此您应该将预期的响应更改为对象

改变这个:

@GET("api/v1/shopper/orders/feed")
fun getOrderList (@Header("Authorization") authHeader:String) : Call<List<OrderInQueue>>

@GET("api/v1/shopper/orders/feed")
fun getOrderList (@Header("Authorization") authHeader:String) : Call<OrderInQueue>

关于java.lang.IllegalStateException : Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $ - Retrofit 2 Android kotlin 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65880222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com