0

我在片段的 onActivityCreated 中使用 JsonObject 请求。我正在将 jsonobject 请求添加到请求队列中。队列根本没有被执行。我已经在 Onresponse 和 Onerrorresponse 中加入了 Log 语句。就像请求根本没有开始一样。下面是我的代码。如果我做错了什么,请提出建议。我需要将一个字符串传递给服务器。所以我把它放在一个 jsonobject jlistname 中。服务器将返回一个 jsonobject,因此使用 jsonobjectrequest 而不是 stringrequest 来接收它。

RequestQueue rq;
JsonObjectRequest jsObjRequest;
JSONObject jlistname = new JSONObject();
String listname="list1";

public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    searchitembtn=(ImageButton) getView().findViewById(R.id.searchitembtn);
    rq = Volley.newRequestQueue(getActivity());
    try {
        jlistname.put("listname", listname);
    } catch (JSONException e) {
        e.printStackTrace();
    }

    jsObjRequest = new JsonObjectRequest(Request.Method.POST, getlistitems, null,
            new Response.Listener<JSONObject>() {
                @Override
                public void onResponse(JSONObject response) {
                    Log.i(TAG, "im in onresponse" + response);
                    System.out.println(response);
                 }
            },
            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    Log.i(TAG, "im in onerrorresponse" + error);
                }
            }) {
        @Override
        public byte[] getBody() {
            return jlistname.toString().getBytes();
        }

        @Override
        public String getBodyContentType() {
            return "application/json";
        }

        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            Map<String, String> headers = new HashMap<String, String>();
            headers.put("Accept", "application/json");
            return headers;
        }
    };


    if (listtype==100||listtype==101){
        -----------------------
        }
    else if(listtype==102){
        Log.i(TAG,"mylisttypeis102: "+listtype);
        Log.i(TAG,"im before adding o request queue"+jsObjRequest);
        rq.add(jsObjRequest);
        Log.i(TAG, "im after adding o request queue"+rq);
    }
    else {
       -------------------
        }

    }
     showLists();

}

更新:我在布局中添加了一个按钮,并在按钮的 onclicklistener 中保留了 rq.add(jsObjRequest);

然后我得到正确的响应。

但我真的不希望点击响应。我希望根据我在 onActivityCreated 中的代码加载片段时生成响应。

有人可以解释为什么我只使用监听器得到响应吗?

4

1 回答 1

0

将请求添加到 RequestQueue

rq.add(jsonObject);
于 2016-03-16T01:29:33.587 回答