将ENUM与Sequelize和Typescript一起使用

时间:2019-12-27 21:22:00

标签: node.js typescript enums sequelize.js

我正在尝试使用USER类创建一个API,该类可以具有一种以上的使用API​​进行身份验证的方式。

我设法使它与只有1个凭证的1个用户一起使用,但是当尝试扩展以允许多个凭证时,我得到了错误: UnhandledPromiseRejectionWarning: SequelizeDatabaseError: (conn=498, no: 1265, SQLState: 01000) Data truncated for column 'type' at row 1

我目前所拥有的是:

User.hasMany(Credential, { foreignKey: 'id', sourceKey: 'id' });

这:

//Credential.ts
export function CredentialInit(sequelize: Sequelize) {
    let cred = Object.keys(CredentialType);
    let credArr: string[] = [];
    for(let i = 0; i < cred.length/2; i++) {
        credArr.push(`${i}`);
    };
    Credential.init({
        email: {
            type: DataTypes.STRING,
            allowNull: true
        },
        password: {
            type: DataTypes.STRING,
            allowNull: true
        },
        token: {
            type: DataTypes.STRING,
            allowNull: true
        },
        type: {
            type: DataTypes.ENUM,
            values: credArr,
            allowNull: false
        }
    }, {
        sequelize: sequelize,
        tableName: 'credentials'
    });
}

export enum CredentialType {
    EMAIL,
    TOKEN
}

export class Credential extends BaseModel {
    public type!: CredentialType;
    public token?: string;
    public email?: string;
    public password?: string;
}

还有这个模型可以从我所有其他模型中删除这些东西。

//BaseModel.ts
export class BaseModel extends Model {
    public id?: number;
    public readonly createdAt?: Date;
    public readonly updatedAt?: Date;
}

任何提示我为什么收到此消息? 我之所以这样写,是因为我不想两次声明枚举的内容。如果更改了,我希望它在任何地方都可以更改....

1 个答案:

答案 0 :(得分:1)

好吧,在进行了更多实验之后,我找到了一种方法。 由于枚举选项在typescript / javascript中用数字表示,因此我更改了与枚举对应的数据库类型:

Credential.init({
    email: {
        type: DataTypes.STRING,
        allowNull: true
    },
    password: {
        type: DataTypes.STRING,
        allowNull: true
    },
    token: {
        type: DataTypes.STRING,
        allowNull: true
    },
    type: {
        type: DataTypes.INTEGER,
        allowNull: false
    }
}, {
    sequelize: sequelize,
    tableName: 'credentials'
});

将其作为整数保存到数据库时,错误消失了。