我尝试使用手机号码获取Otp,但是它显示这样的错误
E / FAILISJERE:java.lang.IllegalStateException:预期为BEGIN_ARRAY,但在第1行第54列路径$ .data处为BEGIN_OBJECT
这是我的网址:= http://192.168.1.105/XXXX/XXXXX/XXXXX/default/send-otp
请求字段:mobileNo,name
响应是这样的:-
{
"error": false,
"msg": "Otp sent successfully",
"data": {
"otp": 152265
}
}
APIClient.Kt:-
object ApiClient {
private var retrofit: Retrofit? = null
val client: Retrofit
get() {
if (retrofit == null) {
retrofit = Retrofit.Builder()
.baseUrl(AppConfig.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build()
}
return retrofit!!
}
}
APIInterface.kt:-
interface ApiInterface {
@FormUrlEncoded
@POST("send-otp")
fun GET_OTP(@Field("name") name: String, @Field("mobileNo") mobileNo: String): Call<OTPSendResponse>
}
AppConfig.kt:-
class AppConfig {
companion object {
const val BASE_URL = "http://192.168.1.105/XXXX/XXXXX/XXXXX/default/"
}
}
OtpModel.kt:-
class OtpModel {
constructor(otp: Int) {
this.otp = otp
}
@SerializedName("otp")
var otp: Int = 0
}
OtpSendResponse.kt:-
class OTPSendResponse {
constructor(error: String, data: ArrayList<OtpModel>, msg: String) {
this.error = error
this.data = data
this.msg = msg
}
@SerializedName("error")
var error: String = ""
@SerializedName("msg")
var msg: String = ""
@SerializedName("data")
var data: ArrayList<OtpModel> = ArrayList()
}
MyActivity.kt:-
private fun sendNameAndMobileNum(name: String, mobileNum: String) {
Log.e("MOBILE", "${mobileNum}")
val apiService = ApiClient.client.create(ApiInterface::class.java)
val call = apiService.GET_OTP(name, mobileNum)
call.enqueue(object : Callback<OTPSendResponse> {
override fun onResponse(call: Call<OTPSendResponse>, response: Response<OTPSendResponse>) {
Log.e("OTP", "${response.body()?.data!![0].otp}")
val otpIs = response.body()!!.data[0].otp
val i = Intent(this@AddNumActivity, OTPVerifyActivity::class.java)
i.putExtra("otp", otpIs)
i.putExtra("mobileNum", mobileNum)
startActivity(i)
}
override fun onFailure(call: Call<OTPSendResponse>, t: Throwable) {
Toast.makeText(this@AddNumActivity, "Ooops !!", Toast.LENGTH_SHORT).show()
Log.e("FAILISJERE", "${t.message}")
}
})
}
答案 0 :(得分:2)
更改模型类,因为在json响应中没有任何数组,因此请删除ArrayList标签
data: ArrayList<OtpModel>
到
data: OtpModel
因为它没有数组
答案 1 :(得分:0)
您的错误意味着从API接收到的调用中提供的类的转换不正确。
E / FAILISJERE:java.lang.IllegalStateException:预期为BEGIN_ARRAY,但在第1行第54列路径$ .data处为BEGIN_OBJECT
表示解串器需要一个数组,但在第1行第54列(对应于数据字段)中找到了“ {”字符,而不是“ data”字段所期望的“ [”。这意味着您的模型不正确。
如果查看模型,您确实可以看到这里的“数据”对象表示为ArrayList,而它应该是单个对象。
因此您只需替换模型
data: ArrayList<OtpModel>
作者:
data: OtpModel
你应该很好