Error Response 500 is not getting diaplayed when password and confirm password typed wrong

后端 未结 3 1597
感动是毒
感动是毒 2021-01-27 16:08

my response getting successfully displayed when password and confirm password typed right....but when it mismatched it is not going to else part....not showing toast anything...

3条回答
  •  误落风尘
    2021-01-27 16:30

    don't check the body response error code check for

    if(response.code() == 500){
      val errorBody = response.errorBody()
      val json = JSONObject(errorBody)
      //show toast
    }
    

提交回复
热议问题