我在我的 models.json 中使用了新的环回:
"customer": {
"options": {
"extend": "User"
},
"properties": {}
}
但是经过运行和探索,客户模型不是扩展用户。
我在我的 models.json 中使用了新的环回:
"customer": {
"options": {
"extend": "User"
},
"properties": {}
}
但是经过运行和探索,客户模型不是扩展用户。
应该使用“base”而不是“extend”。请参阅文档。
"user": {
"options": {
"base": "User",
},
"properties": {}
}
我们可以考虑同时支持“base”和“extend”。