为什么我的pg查询结果会抛出TypeError

时间:2015-04-16 01:36:57

标签: javascript node.js postgresql pg-query

我正在创建一个节点函数来在PostgreSQL数据库中创建用户。我使用node.jspgpg-query从应用程序与数据库进行通信。

在我插入新记录之前我试图验证电子邮件地址尚不存在。

我不确定为什么我的result.rows[0].id投掷了TypeError: Cannot read property '0' of undefined error基于documentation我正在使用正确的语法来访问我的查询结果。

这是功能:

/* POST create user */
router.post('/adduser', function(req, res) {

    var salt = crypto.randomBytes(16);
    var newHash = hash(req.body.password, salt);

    query.connectionParameters = connString;
    query('SELECT id FROM users WHERE email = $1',[req.body.email], function(err, result) {
    if (err){
        console.log('Insert error: ' + err);
    }

    // If email exists, return error else insert new record
    if(result.rows[0].id != null) {
        query('INSERT INTO users (email, password, salt) VALUES ($1, $2, $3)', [req.body.email, newHash, salt], function(err, result) {
              if (err){
                console.log('Insert error: ' + err);
              }
              res.send( ( err === null ) ? { msg: '' } : { msg:err }  );
            });
    }
    else{
        console.log(result);
        res.send({msg:'User already exists'});
    }
    });
});

我收到的错误如下:

/home/robot/workspace/userapp/routes/users.js:35
    if(result.rows[0].id != null) {
                  ^
TypeError: Cannot read property '0' of undefined
    at /home/robot/workspace/userapp/routes/users.js:35:23
    at Function.onSuccess (/home/robot/workspace/userapp/node_modules/pg-query/index.js:55:7)
    at null.callback (/home/robot/workspace/userapp/node_modules/pg-query/node_modules/okay/index.js:7:16)
    at Query.handleReadyForQuery (/home/robot/workspace/userapp/node_modules/pg/lib/query.js:80:10)
    at null.<anonymous> (/home/robot/workspace/userapp/node_modules/pg/lib/client.js:158:19)
    at emit (events.js:129:20)
    at Socket.<anonymous> (/home/robot/workspace/userapp/node_modules/pg/lib/connection.js:109:12)
    at Socket.emit (events.js:107:17)
    at readableAddChunk (_stream_readable.js:163:16)
    at Socket.Readable.push (_stream_readable.js:126:10)

我是javascriptnode的新手,所以这可能是非常明显的事情。如果它有帮助,这是pg-query documentation

**解决方案**

将条件更改为if(result[0].num == 0) {解决了问题。 pg-query显然没有返回名为rows的属性。

2 个答案:

答案 0 :(得分:1)

**解决方案**

将条件更改为if(result[0].num == 0) {解决了问题。 pg-query显然没有返回名为rows的属性。

答案 1 :(得分:0)

我认为rows对象是undefined,表示没有给定电子邮件地址的用户。您可以将查询更改为select count(*) as num from users where email = $1。这样可以确保结果,您可以测试result.rows[0].num == 0