标签: crud loopbackjs
我使用Loopback4,并具有下一个模型定义
console.log()
下面有控制器动作
export class ResourceGroup extends Entity { @property({ type: 'number', id: true, generated: true }) id: number; // ...
我不想为POST请求提供“ id”属性。
如何隐藏它?