我有一个 android 应用程序使用以下内容向我发送加速度计数据,其中 body 是一个字符串,例如{"device_name":"device1","time":123123123,"acceleration":1}
:
con = (HttpURLConnection) new URL(SERVER).openConnection();
con.setRequestMethod("POST");
con.setDoOutput(true);
writer = new OutputStreamWriter(con.getOutputStream());
writer.write(body);
writer.flush();
在服务器端,我正在使用正文解析器,例如:
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({extended:false}));
...
app.post('/' function(req,res {
console.log(req.headers);
console.log(req.body);
当我收到一个发布请求时,会出现以下内容:
{ '{"device_name":"device1","time":123,"jerk":21.135843,"acceleration":1}': '' }
我想以以下形式获取 req.body{"device_name":"device1","time":123123123,"acceleration":1}
是否有我缺少的参数来设置它?
谢谢!
更新:
我无法访问客户端代码以进行更改,因此更改正在发送的内容类型会更加困难。这是 req.head 日志...
{ 'user-agent': '...(Linux; U; Android 4.1.2;...)',
host: '...',
connection: 'Keep-Alive',
'accept-encoding': 'gzip',
'content-type': 'application/x-www-form-urlencoded',
'content-length': '...' }