0
我請點擊此鏈接,並試圖顯示數據sailsjs單向關聯實施
http://sailsjs.org/documentation/concepts/models-and-orm/associations/one-way-association
,但我「在‘字段列表’未知列‘shop.building_detail’」
得到了錯誤這是帆錯誤還是我做錯了什麼?
有我的數據庫設計,我在下面
店型號代碼:
module.exports = {
autoPK:false,
attributes : {
shop_id : {
primaryKey : true,
type : 'int',
unique: true,
columnName : 'shop_id'
},
shop_floor : {
type : 'string'
},
shop_room : {
type : 'string'
},
shop_build : {
type : 'int',
foreignKey:'true'
},
building_detail : {
model : 'building'
}
}
};
建築模型:
module.exports = {
autoPK:false,
attributes : {
build_id : {
primaryKey : true,
type : 'int',
unique: true,
columnName : 'build_id'
},
build_name : {
type : 'string'
},
build_address : {
type : 'string'
},
build_latitude : {
type : 'float'
},
build_longitude : {
type : 'float'
},
build_visit_count : {
type : 'int'
},
build_status : {
type : 'string'
},
build_status_last_update_time : {
type : 'time'
}
}
};
解決了我的問題,非常感謝 –