这里我想在StrongLoop上创建模型关系。 我有这种情况:
我该如何创建这样的模型关系? 感谢。
答案 0 :(得分:0)
你应该能够找到你需要的东西:
http://strongloop.com/strongblog/defining-and-mapping-data-relations-with-loopback-connected-models/
基本上,
// 1-many
Category.hasMany(Book, {as: 'books', foreignKey: 'id_category'});
Publisher.hasMany(Book, {as: 'books', foreignKey: 'id_publisher'});
// belongsTo
Book.belongsTo(Category, {as: 'category', foreignKey: 'id_category'});
Book.belongsTo(Publisher, {as: 'publisher', foreignKey: 'id_publisher'});
根据您希望如何导航模型关系,您可以定义一个方向或两者。