我有一个名为“Customer”的模型,它基于(扩展)“User”模型:
{
"name": "customer",
"base": "User",
"idInjection": true,
"options": {
"validateUpsert": true
},
这个模型有这样的关系:
"carts": {
"type": "hasOne",
"model": "cart",
"foreignKey": "",
"options": {
"nestRemoting": true
}
“购物车”模型有这样的关系:
"products": {
"type": "hasMany",
"model": "product",
"foreignKey": ""
}
我如何访问该方法(GET):
/客户/ {ID} /推车/产品
通过customer.json ACL?
我在这里找不到答案: 的 https://loopback.io/doc/en/lb3/Accessing-related-models.html 因为没有任何解释如何访问嵌套模型。
修改 我找到了解决方案:
__ get__carts__products