作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在商店表和产品之间创建 1:1 的关系。
每个产品都应该有一个店铺表的外键,每个店铺都应该有一个产品的外键。
我已经定义了这两个表。
module.exports = function( sequelize , DataTypes ){
var shops = sequelize.define('shops',{
id: {
type: DataTypes.INTEGER,
allowNull:false,
primaryKey:true,
autoIncrement:true
},
name:{
type:DataTypes.STRING,
allowNull:false
},
address:{
type: DataTypes.STRING,
allowNull:false
},
web:{
type: DataTypes.STRING,
allowNull:false
},
price:{
type: DataTypes.INTEGER,
allowNull:false
}
})
return shops
}
module.exports = function( sequelize , DataTypes ){
var component = sequelize.define('component',{
id: {
type: DataTypes.INTEGER,
allowNull:false,
primaryKey:true,
autoIncrement:true
},
name:{
type: DataTypes.STRING,
allowNull:false
},
storage:{
type: DataTypes.INTEGER,
allowNull:false
},
bilance:{
type: DataTypes.INTEGER,
allowNull:false
}
},{
classMethods:{
associate:function(models){
component.hasOne(shop,{foreignKey:'foreign_key'})
}
}
})
return component;
}
db.shop.belongsTo(db.component)
db.component.hasOne( db.shop ,{foreignKey : 'shop_id'})
db.component.hasMany(..)
最佳答案
您需要从回调方法中提供给您的 模型 对象中引用 shop 。所以在这种情况下,你会这样做:
classMethods:{
associate:function(models){
component.hasOne(models.shop,{foreignKey:'component_shop_FK'})
}
}
allowNull: false
。
models.shop
更改为
models.shops
!
关于node.js - sqlize/hasOne 中的关系不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39519954/
我正在尝试在商店表和产品之间创建 1:1 的关系。 每个产品都应该有一个店铺表的外键,每个店铺都应该有一个产品的外键。 我已经定义了这两个表。 module.exports = function( s
我是一名优秀的程序员,十分优秀!