标签: mysql loopbackjs v4l2loopback
我有loopback4模型,在这里我无法自动增加表id。现在将id值设为0。该怎么做
这是我的模型的代码
@model() export class Contact extends Entity { @property({ type: 'number', id: true, generated: true, }) id?: number;
我已经在Google上进行了搜索,发现生成:true ,如果我们应用,它会起作用,但不适用于我。