DSBridge-Android icon indicating copy to clipboard operation
DSBridge-Android copied to clipboard

示例中AjaxHandler处理post获取data为空问题

Open yangwubo0800 opened this issue 6 years ago • 0 comments

        // Create request body
        if(requestData.getString("method").equals("POST")){
            RequestBody requestBody=RequestBody
                    .create(MediaType.parse(contentType),requestData.getString("**data**"));
            rb.post(requestBody) ;
        }

这里获取data 是空的,应该改为获取 body 吧?

yangwubo0800 avatar Feb 19 '19 03:02 yangwubo0800