在图书馆翻新中,登录用户有一个问题。 我用Kotlin编写了一个应用程序。当我单击按钮登录时,什么都不做。我不知道怎么出问题。
buttonLogin.setOnClickListener{
//val intent = Intent(this, MainActivity::class.java);
//startActivity(intent);
val email = editTextLogin.text.toString().trim();
val password = editTextPassword.text.toString().trim();
val call : retrofit2.Call<User> = RetrofitClient.create().login(email, password)
call.enqueue(object : retrofit2.Callback<User>{
override fun onFailure(call: retrofit2.Call<User>?, t:Throwable?){
}
override fun onResponse(call:retrofit2.Call<User>?, response: Response<User>){
if(response.isSuccessful){
val user: User = response.body()!!
if(user.success.equals("true")){
Log.d("", "onResponse()");
}
else {
Log.d("", "onFail()");
}
}
}
})
Blockquote
@FormUrlEncoded
@POST("/login")
fun login(@Field("email") email: String,
@Field("password") password: String)
: retrofit2.Call<User>;
//fun login(@Query("login")login: String, @Query("password")password:String) : retrofit2.Call<User>
`
Blockquote
class User {
var success : String = "";
}
答案 0 :(得分:0)
您的代码执行可能会重定向到改造代码的onFailure部分。
将日志或Toast放入onFailure部分,然后运行或调试!