node.js处理内容类型为application / json的发布数据

时间:2019-05-12 15:56:56

标签: node.js

使用核心node.js,我可以处理表单数据

var qs = require('querystring');
var body = '';
        req.on('data', function(chunk) {
            body += chunk.toString();
        });
        req.on('end', function() {
             var data = qs.parse(body);
             console.log(data);

        });

但是它不能正确处理应用程序/ json数据。 输出是这样的: { '{"user_id":"41","url":"http://localhost:4200/#/ticket/createTicketL': '', 'T"}': '' }

请求数据是否为:{user_id: "41", url: "http://localhost:4200/#/ticket/createTicketL&T"}

如何正确处理数据?

0 个答案:

没有答案