0

我在我的 models.json 中使用了新的环回:

"customer": { "options": { "extend": "User" }, "properties": {} }

但是经过运行和探索,客户模型不是扩展用户。

4

1 回答 1

1

应该使用“base”而不是“extend”。请参阅文档

"user": {
  "options": {
    "base": "User",
 },
 "properties": {}
}

我们可以考虑同时支持“base”和“extend”。

于 2014-04-01T06:50:22.923 回答