Sequelize findOrCreate插入新行但返回主键未定义的对象

 手机用户2502887185 发布于 2023-02-04 16:34

我在一个小nodejs项目中使用Sequelize,使用mysql数据库.

使用findOrCreate,我可以找到现有对象并插入新对象,但是当新对象创建并返回时,主键是"未定义".

定义

    module.exports = function(sequelize, DataTypes) {
        var Student = sequelize.define('Student', {
        id : {
            type : DataTypes.BIGINT,
            primaryKey : true
        },
        wxid : DataTypes.STRING,
        client : DataTypes.STRING,
        nick : DataTypes.STRING,

        wallet : {type: DataTypes.INTEGER, defaultValue: 0},
        mcount : {type: DataTypes.INTEGER, defaultValue: 0},
        qcount : {type: DataTypes.INTEGER, defaultValue: 0},

        status : {type: DataTypes.INTEGER, defaultValue: 0},
        premium_type : {type: DataTypes.INTEGER, defaultValue: 0},
        createtime : DataTypes.DATE,
        lastqtime : DataTypes.DATE,
        lastmtime : DataTypes.DATE

        }, {
        freezeTableName : true,
        timestamps : false,
        tableName : 'student_student',
        associate: function(models) {
            Student.hasMany(models.Question, {as:'questions', foreignKey: 'student_id'});
        }
        });

        return Student;
    };

findOrCreate

    db.Student.findOrCreate( { wxid : info.uid },
            {
                client: client_name,
                createtime: new Date(),
                lastmtime: new Date()
            }).success(
            function(stu, created) {
                if (!stu) {
                console.log('Stu[' + info.uid + '] not found.'.red);
                } else {
                if (created) {
                    stu.created = true;
                    console.log(stu.values);    
                    //// Here, stu.id is 'undefined'

                }
                }
            });

日志:

    [app-0 (out) 2014-01-10T21:54:32] { id: undefined,
    [app-0 (out) 2014-01-10T21:54:32]   wxid: 'o6ssct7SHGXN1zlyD6vvfk3TMr68',
    [app-0 (out) 2014-01-10T21:54:32]   client: 'wxcs',
    [app-0 (out) 2014-01-10T21:54:32]   nick: undefined,
    [app-0 (out) 2014-01-10T21:54:32]   wallet: 0,
    [app-0 (out) 2014-01-10T21:54:32]   mcount: 0,
    [app-0 (out) 2014-01-10T21:54:32]   qcount: 0,
    [app-0 (out) 2014-01-10T21:54:32]   status: 0,
    [app-0 (out) 2014-01-10T21:54:32]   premium_type: 0,
    [app-0 (out) 2014-01-10T21:54:32]   createtime: Fri Jan 10 2014 21:54:32 GMT+0800 (CST),
    [app-0 (out) 2014-01-10T21:54:32]   lastqtime: undefined,
    [app-0 (out) 2014-01-10T21:54:32]   lastmtime: Fri Jan 10 2014 21:54:32 GMT+0800 (CST) }

但是当我查看数据库时,我发现行已正确插入.

如何使用id设置findOrCreate?谢谢.

YeRuizhi.. 6

添加autoIncrement: true到id字段,修复问题.

1 个回答
  • 添加autoIncrement: true到id字段,修复问题.

    2023-02-04 16:35 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有