如何在创建方法(POST)中隐藏ID字段

时间:2019-07-06 10:04:35

标签: crud loopbackjs

我使用Loopback4,并具有下一个模型定义

console.log()

下面有控制器动作

export class ResourceGroup extends Entity {
  @property({
    type: 'number',
    id: true,
    generated: true
  })
  id: number;
// ...

enter image description here

我不想为POST请求提供“ id”属性。

如何隐藏它?

0 个答案:

没有答案