{ "name": "movimenti", "plural": "movimenti", "base": "PersistedModel", "idInjection": true, "options": { "validateUpsert": true }, "properties": { "mov_id": { "type": "number", "required": true }, "mov_tipo": { "type": "string", "required": true }, "mov_valore": { "type": "number", "required": true } }, "validations": [], "relations": {}, "acls": [], "methods": {} }
我将模型连接到MySQL数据库:
"movimenti": { "dataSource": "banca", "public": true }
我质疑GET方法,出现以下错误:
但我的表中没有ID字段。 我如何解决这个问题?
环回将自动添加 id 列,如果模型的任何属性都没有提到id。
id
mov_id 是id。在模型中通过添加 id: true 行: Reference
mov_id
id: true
{ ... "properties": { "mov_id": { "type": "number", "required": true, "id":true }, ... }