如何修复Node JS中的集合头?

时间:2018-12-26 23:20:21

标签: javascript node.js

我正在尝试从mysql的状态重定向到get方法,但是它不起作用。我该怎么解决?

app.post('/responses/',(req,res)=>{
    var {text, context ={} } = req.body;
    var params = {
        input: {text},
        workspace_id: '07',
        context
    }`
    `assistant.message(params,(err,response) => {
        if(err){
            res.status(500).json(err);
        }
        else {
            res.json(response);
            console.log(JSON.stringify(response, null, 2));
        }
        if(response.context.rfc){
            var RFC = response.context.rfc;
            connection.connect(function(err) {
                if (err) throw err;
                connection.query(`SELECT * FROM test where RFC = '${RFC}'`, function (err, result, fields) {
                    if(result.length){
                        console.log("login");
                    }
                    else {
                        console.log('no login');
                        res.redirect('/home'); //Her not redirect.
                    }
                });
            });
        }
    });
});

因为显示此错误:hrow err; // Rethrow non-MySQL errors ^Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client

1 个答案:

答案 0 :(得分:0)

该错误消息表示您已在发送响应后尝试设置标头。从示例代码中,您的API调用(无论assistant.message是什么)看起来都在返回RFC。然后,您尝试重定向到另一个页面,但是您已经 名为res.json,该页面开始向浏览器发送响应。

您需要稍微重构控制器,以便仅调用res.redirectres.json,而不是两者。