gpt4 book ai didi

node.js - 将 ORM 中模型的输出更改为我自己的 ORM 中的数据格式 - sequilize Node

转载 作者:行者123 更新时间:2023-12-03 22:38:27 25 4
gpt4 key购买 nike

我不需要将状态显示为整数,而是需要状态为 ("Pending"、"Active"、"InActive")。
我怎样才能在 Node 中实现这一点
var CustomerLogin = sequelize.define('users', {
id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true,
autoIncrement: true
},
email: {
type: DataTypes.STRING(255),
allowNull: true
},
status: {
type: DataTypes.INTEGER(4),
allowNull: false
},
});

最佳答案

无论您需要在何处显示状态,都可以使用这样的函数:

function DisplayStatus(status){
switch(status){

case 0:
return "Pending"
...
default:
return "unknown status"

}
}


....


const status = DisplayStatus(yourStatusInteger)

关于node.js - 将 ORM 中模型的输出更改为我自己的 ORM 中的数据格式 - sequilize Node ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54483027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com