express中的bodyparse文本数据

时间:2018-10-11 13:19:26

标签: node.js express

我正在尝试获取邮递员行发送的数据->文本数据,但无法获取。 我可以打印整个身体,但是如何打印身体参数? 主体采用查询字符串的形式。 enter image description here

NodeCode:

   const bodyParser = require("body-parser"); 
   app.use(bodyParser.urlencoded({
            extended: true
    }));
    app.use(bodyParser.json());
    app.use(bodyParser.text());
    app.post('/data/UploadLogsToServer', async (req, res) => {
            return res.json(req.body);
    });

上面的代码打印出完整的正文,例如 enter image description here

但是我如何仅从查询字符串中获取Store参数?

1 个答案:

答案 0 :(得分:1)

querystring npm模块解决了我的问题

解决方案:

ionic cordova plugin add cordova-plugin-firebase