gpt4 book ai didi

mysql - LoopbackJS中如何选择外键引用的字段

转载 作者:行者123 更新时间:2023-11-29 05:55:05 25 4
gpt4 key购买 nike

我想知道如何选择外键引用的字段。我在文档中找不到它。

例如,如果我有一个Product 表和一个ProductTag 表。一个 Product hasMany ProductTags。然后我的 ProductTag 表将有一个指向 Product 表的外键,通过:

{ // Product
...
"relations": {
"productTags": {
"type": "hasMany",
"model": "ProductTag",
"foreignKey": ""
}
}
}

我的 Product 表的字段是 id - 我想将其设置为 idsku - 独特价格等...

然后该关系将创建一个引用 Product.id 的外键。我如何将它引用到 Product.sku

谢谢!

最佳答案

来自documentation

  "relations": {
"orders": {
"type": "hasMany",
"model": "Order",
"foreignKey": "customerId",
"primaryKey": "id" // optional
},

The target model, Order, has a property, customerId, as the foreign key to reference the declaring model (Customer) primary key id.

关于mysql - LoopbackJS中如何选择外键引用的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50166257/

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