我已经尝试过本文档中几乎所有可能选项的所有可能方法: https://github.com/expressjs/body-parser
我试图用以下内容阅读请求正文:
app.use(bodyParser.text());
app.use(bodyParser.json());
app.use(bodyParser.raw());
app.use(bodyParser.urlencoded({ extended: false }));
我也尝试了一些选项,但是每个版本都返回一个Object(我不能转换为String),而不是String。
是否有可能以某种方式读取此请求类型的正文?
Content-Type: text/x-gwt-rpc; charset=UTF-8
感谢您的帮助!