响应未定义

时间:2019-05-24 12:17:13

标签: node.js

Post.getAllPosts = function (result) {
        let qrsmt = 'SELECT * FROM notification';
        sql.query(qrsmt,function (err, res) {
                if (err) {
                    console.log("error: ", err);
                    result(err, null);
                } else {
                    result(null, res);
                }
            });
    }

    exports.getAllPosts = function (req, res) {
            console.log('data body ===========>');
        Post.getAllPosts(function (err, result) {
            if (err) {
                console.log('error==1==>')
                res.send(err);
            } else {
                console.log('error==2==>')
                // response(res, true,  result);
                response(res,result)
            }
        });
    }

此处未定义响应,错误为occuring。请告诉我如何使用响应将多个数据作为响应。

0 个答案:

没有答案