Android Volley:POST请求 - 在NodeJS REST API内部的req.body为空

时间:2016-01-10 17:03:06

标签: android node.js rest express android-volley

我知道它已被讨论了十亿次,而且我已经阅读了几个问题/答案,特别是这个似乎是一个很好的例子 - > example。所以现在我尝试重新创建代码并添加了getParams()以及getHeaders()。 我很尴尬地获得了HTTP状态码400:

E/Volley: [303] BasicNetwork.performRequest: Unexpected response code 400 for http://10.0.2.2:3000/classes

由于我已经创建了REST API,因此我可以看到此状态代码400来自哪里,如果req.body不包含mAtt, mDatum, mRID, mVon,则会查看我的NodeJS响应。所以现在我知道,即使我设置了POST以及我的getParams(),我的getHeaders()请求也无法正常工作...

现在,我的猜测是我设置了Params,但我提取了req.body.mAtt, req.body.mDatum , req.body.mRID, req.body.mVon,这可以解释为什么我的NodeJS返回状态代码400.如果我提取了req.query.mAtt我可能会得到一些回报?

是否有某种方法需要被我覆盖,实际设置正文而不是查询参数?

这就是我的POST req的样子:

    JsonObjectRequest JOPR = new JsonObjectRequest(Request.Method.POST,
                       myAcitveLessonPOSTUrl, null, new Response.Listener<JSONObject>(){
        @Override
        public void onResponse(JSONObject response) {
            try {
                VolleyLog.v("Response:%n %s", response.toString(4));
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            VolleyLog.e("Error: ", error.getMessage());
        }
    }){
        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("Content-Type", "application/json");
            return headers;
        }

        @Override
        protected Map<String, String> getParams()
        {
            Map<String, String>  params = new HashMap<String, String>();
            params.put("mAtt", "+1");
            params.put("mDatum", mDatum);
            params.put("mRID", mRID);
            params.put("mVon", mVon);

            return params;
        }


    };


    requestQ.add(JOPR);

谢谢!

1 个答案:

答案 0 :(得分:4)

我终于明白了。我继续寻找答案,偶然发现了这个问题/答案link

由于我的REST API正在查找req.body个变量,getParams()无效。要发送req.body个变量,必须覆盖getBody()方法。

所以我基本上要做的是:

1)创建一个JSONObject

2)将我的key:值放在JSONObject

3)通过toString()

将我的JSONObject内容转换为String

4)@Override我的JsonObjectRequest中的getBody()方法

完成。

所以我的更正代码如下所示:

    JSONObject jsonBodyObj = new JSONObject();
    try{
        jsonBodyObj.put("mAtt", "+1");
        jsonBodyObj.put("mDatum",mDatum);
        jsonBodyObj.put("mRID",mRID);
        jsonBodyObj.put("mVon",mVon);
    }catch (JSONException e){
        e.printStackTrace();
    }
    final String requestBody = jsonBodyObj.toString();

    JsonObjectRequest JOPR = new JsonObjectRequest(Request.Method.POST,
                   myAcitveLessonPOSTUrl, null, new Response.Listener<JSONObject>(){
        @Override
        public void onResponse(JSONObject response) {
            try {
                VolleyLog.v("Response:%n %s", response.toString(4));
                populateLessonDetails(myActiveLessonURLFiltered);
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            VolleyLog.e("Error: ", error.getMessage());
        }
    }){
        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("Content-Type", "application/json");
            return headers;
        }


        @Override
        public byte[] getBody() {
            try {
                return requestBody == null ? null : requestBody.getBytes("utf-8");
            } catch (UnsupportedEncodingException uee) {
        VolleyLog.wtf("Unsupported Encoding while trying to get the bytes of %s using %s",
                        requestBody, "utf-8");
                return null;
            }
        }


    };

    requestQ.add(JOPR);  

感谢@dvdciri的原始问题和编辑,最终会成为这个答案!