我有一个USERS表,其中有两个主键:id和mail,Users与另一个表Contacts有1:1的关系。我想" export" RefreshToken表中的两个外键关联到mail和id。
USERS表格定义:
module.exports = function (sequelize, DataTypes) {
const Users = sequelize.define('Users', {
id: {
type: DataTypes.INTEGER(11),
autoIncrement: true,
primaryKey: true
},
firstname: {
type: DataTypes.STRING,
allowNull: true
},
lastname: {
type: DataTypes.STRING,
allowNull: true
},
email: {
type: DataTypes.STRING,
allowNull: false,
primaryKey: true
},
password: {
type: DataTypes.STRING,
allowNull: false
}
}, {
classMethods: {
associate: function (models) {
Users.hasOne(models.RefreshToken, {foreignKey:'userId'}
}
},
tableName: 'Users',
hooks: {
beforeCreate: user => {
const salt = bcrypt.genSaltSync();
user.password = bcrypt.hashSync(user.password, salt);
}
}
});
RefreshToken表定义:
module.exports = function (sequelize, DataTypes) {
const RefreshToken = sequelize.define('RefreshToken', {
idRefreshToken: {
type: DataTypes.INTEGER(11),
autoIncrement: true,
primaryKey: true
},
token: {
type: DataTypes.TEXT,
allowNull: true
},
expire: {
type: DataTypes.DATE,
allowNull: true
}
}, {
tableName: 'RefreshToken'
});
答案 0 :(得分:0)
我不是100%肯定而不看你的代码,但我认为你要做的是这个
db.define('user', {/* ... */});
db.define('contact', {/* ... */});
db.model('contact').belongsTo(db.model('user'), { as: 'contact' })
db.model('contact').belongsTo(db.model('user'), { as: 'other' })
db.model('user').hasOne(db.model('user'), { as: 'contact' })
db.model('user').hasOne(db.model('user'), { as: 'other' })
这应该为联系人表提供两列,userId
和otherId
都引用用户表。您应该可以致电someUser.getContact()
和someUser.getOther()
答案 1 :(得分:0)
您可能尝试做的事情可能如下:
module.exports = function (sequelize, DataTypes) {
const Users = sequelize.define('Users', {
id: {
type: DataTypes.INTEGER(11),
autoIncrement: true,
primaryKey: true
},
firstname: {
type: DataTypes.STRING,
allowNull: true
},
lastname: {
type: DataTypes.STRING,
allowNull: true
},
email: {
type: DataTypes.STRING,
allowNull: false,
primaryKey: true
},
password: {
type: DataTypes.STRING,
allowNull: false
}
});
Users.associate = (models) => {
Users.belongsTo(models.RefreshToken, {
foreignKey: 'userId'
});
Users.belongsTo(models.RefreshToken, {
foreignKey: 'email'
});
};
return Users;
}
我注意到你正在使用sequelize v3风格,请尝试阅读有关如何迁移到v4的sequelize文档,这是目前支持的。