我正在为 nodejs 使用复合库,
主键是自动增量的,通过模型对象插入数据库后,对象的id为NULL,但在数据库中有正确的数字,调用“save()”后如何获取这个数字?
var user = new User();
user.name = Math.random();
user.save();
console.warn(user);//the user.id is null, not the number in db
ps:还有没有办法在模型中使用自定义主键名称而不是总是id?