我通过函数discoverAndBuildModels
使用现有数据库的环回。在我的表格中,PK" ID"字段是自动增量&不是空值。如果我不发送" id"通过API的字段值,loopback给我" ID要求"错误。任何人都可以帮我定义" ID"字段值为null,将由DB本身分配?
[code snippet]
module.exports = function (app, callback) {
var CustomerProfile = app.models.CustomerProfile;
CustomerProfile.validatesPresenceOf("fName","lName","mobile");
callback();
};