How to force parse request body as plain text instead of json in Express?

后端 未结 8 2024
死守一世寂寞
死守一世寂寞 2021-01-03 17:49

I am using nodejs + Express (v3) like this:

app.use(express.bodyParser());
app.route(\'/some/route\', function(req, res) {
  var text = req.body; // I expect         


        
相关标签:
8条回答
  • 2021-01-03 18:37

    I did it:

    router.route('/')
    .post(function(req,res){
        var chunk = '';
    
        req.on('data', function(data){
            chunk += data; // here you get your raw data.
        })        
    
        req.on('end', function(){
    
            console.log(chunk); //just show in console
        })
        res.send(null);
    
    })
    
    0 讨论(0)
  • 2021-01-03 18:40

    Make sure the version of express and bodyParser has been upgraded to the appropriate versions. Express ˜4.x and bodyParser ˜1.18.x. That should do it. With that in place the following should work

    app.use(bodyParser.text());

    0 讨论(0)
提交回复
热议问题