2

我有一个 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': '...' }
4

1 回答 1

1

您正在上传 JSON 字符串,但您并未指示body-parser处理这些字符串。

而不是这个:

app.use(bodyParser.urlencoded({extended:false}));

用这个:

app.use(bodyParser.json());

还要确保您的请求将Content-Type标头设置为application/json. 如果这是不可能的,并且您确定上传的内容始终是 JSON,您可以强制正文解析器将正文解析为 JSON,如下所示:

app.use(require('body-parser').json({ type : '*/*' }));
于 2015-06-30T15:26:24.133 回答