从客户端的表单数据发布中检索键/值

时间:2017-11-22 09:00:54

标签: node.js nodejs-stream

我编写API以便客户端上传文件。 API具有内容类型的多个/表单数据。但我不知道从客户端发送到我的

的值
router.post('/upload/file', async (req, res) => {
var body = "";
try {
    req.on('data', function (chunk) {
        body += chunk;
    });
    req.on('end', function () {
        console.log('body: ' + body);
        var formData = new FormData(body);
        console.log("=====================", formData.entries);
        // var {accessTok, type, file} = req.params;
        //
        // if (!accessTok || !type || !file) {
        res.json({
            code: -1000,
            message: 'Missing parameter(s). Please provide accessToken, type upload, file upload.'
        });
        res.end();
        return null;
    })
    // }
}catch(err){
    res.json({err: err.message});
    res.end();
    return;
}

我尝试过使用FormData但没有完成。我得到错误不是函数,formData.getKey('')是相同的。

0 个答案:

没有答案