在应用打开状态下手动更改时间后,Volley没有请求新请求

时间:2019-02-14 04:45:33

标签: java android android-volley

我有一个Android应用程序,该应用程序使用Volley调用Web服务。如果正在打开我的应用程序,并且手动更改了时间(向后或向前),则Volley不会触发新请求,并且已经在缓存中的响应将返回。如果清除缓存和数据,则只有新请求才会触发,并且会出现新响应。 Volley请求与系统时间有何关系,为什么会发生这种情况?有什么解决办法吗?

StringRequest stringRequest = new StringRequest(Request.Method.POST, new ServiceUtils().url,
    new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
           // Log.d(TAG, "onResponse: response " + response);
        }
    }, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
       //Log.d(TAG, "onErrorResponse: " + error);
    }
    }) {
    @Override
    protected Map<String, String> getParams() throws AuthFailureError {
        HashMap<String, String> nameValuePairs = new HashMap<String, String>();
        nameValuePairs.put("parm1", parm1);
        nameValuePairs.put("parm2", parm2);
        nameValuePairs.put("parm3", parm3);
        return nameValuePairs;
    }
};

addToRequestQueue(stringRequest, "", getApplicationContext());

1 个答案:

答案 0 :(得分:1)

Volley自动缓存任何请求,并且为了克服这种情况,您需要将setShouldCache属性设置为false

request.setShouldCache(false);
myQueue.getCache().clear();
myQueue.add(request);

这是从Github issue复制来的完整请求。

RequestQueue queue = Volley.newRequestQueue(context);
queue.getCache().clear();
StringRequest myReq = new StringRequest(Request.Method.POST,
        VolleyConnector.url,
        createMyReqSuccessListener(),
        createMyReqErrorListener()) {

    protected Map<String, String> getParams() throws com.android.volley.AuthFailureError {
        Map<String, String> params = new HashMap<String, String>();
        params.put("Cn","1");
        params.put("Yr","1396");
        params.put("MaxInPage","10");
        params.put("Method","Control_Vaziat_View");
        params.put("Pg","1");
        return params;
    };
};
myReq.setShouldCache(false);
queue.add(myReq);

希望有帮助!