thinkphp icon indicating copy to clipboard operation
thinkphp copied to clipboard

修复Model自动校验主键唯一Insert Bug

Open UniqueOnly opened this issue 7 years ago • 0 comments

当开发者将主键pk也写入validate时,程序会生成如下语句select * from table where id <> '{$id}' limit 1,即使设置了主键,这插入create校验时就已被拒绝,正确应为select * from table where id = '{$id}' limit 1,故修复BUG,加入判断当前pk是否等于当前传入key,是则不进行完善编辑的时候验证唯一。

UniqueOnly avatar Jan 14 '18 18:01 UniqueOnly