大家好我正在使用Android Volley Library创建一个Android应用程序的登录/注册部分。我的应用程序运行良好,但UI和逻辑属于同一类。所以,我把它们分成了两个类。我的应用程序使用POST方法向我的NodeJS服务器发出请求并获取JSON响应。所以我试图将POST请求函数保留在另一个类中。
分离类后,我在等待响应时遇到问题。这是函数;
public String doWebRequestLogin(Context context, boolean checkLoginForm, final Map<String,String> json){
result[0] = "FREE";
this.context = context;
if(checkLoginForm){
StringRequest post = new StringRequest(Request.Method.POST, loginUrl, new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
Log.d("Login Response: ",response);
data = response;
res = new JSONObject(data);
if (res.getString(KEY_SUCCESS) != null) {
int success = Integer.parseInt(res.getString(KEY_SUCCESS));
if (success == 1) {
result[0] = "LOGGED";
} else if (success == 0) {
result[0] = "LOGIN ERROR";
} else {
result[0] = "INVALID POST";
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.d("Response Error", error.toString());
result[0] = "INVALID POST";
}
}){
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> map = json;
return map;
}
};
VolleyController.getInstance(this.context).getRequestQueue().add(post);
}
return result[0];
}
由于响应时间的原因,此函数每次都会将结果[0]返回为“FREE”。它怎么能等待响应并根据响应设置结果[0]?我需要知道发出请求时发生了什么。
答案 0 :(得分:2)
请求是异步的,您必须阻止等待响应的主线程。使方法无效并使用回调来处理收到的响应。
public void doWebRequestLogin(SomeCallback callback, Context context, boolean checkLoginForm, final Map<String,String> json){
[...]
if (res.getString(KEY_SUCCESS) != null) {
int success = Integer.parseInt(res.getString(KEY_SUCCESS));
callback.someMethod(success);
}
}
对于回调:
public interface SomeCallback{
void someMethod(int result); // response received, handle it
}
回调也可能有返回类型或是通用的,这完全取决于您的需求......
答案 1 :(得分:2)
我在onclick函数中的UI上调用doWebRequestLogin()
然后你做 NOT 想要“等待回复”。无论网络I / O占用多长时间,都会冻结你的用户界面,而你的用户将会......不为所动。
相反,请使用onResponse()
和onErrorResponse()
方法更新您的用户界面。
这种通过回调处理结果的异步调用是Android核心事件驱动编程模型的核心。