framework icon indicating copy to clipboard operation
framework copied to clipboard

修复 think\Validate unique规则 当未提供字段名时 未使用要验证的字段名进行查询 导致sql错误

Open 153264 opened this issue 3 years ago • 0 comments


$valdiate = Validate::check([
    'user_phone' => '136***142'
],[
    'user_phone' => 'unique:app\model\User,,1,'
]);
// SELECT `user_guid` FROM `user` WHERE (   = '136***142'  AND `user_guid` <> '1' ) AND `user`.`user_delete_time` IS NULL LIMIT 1

153264 avatar Apr 16 '22 01:04 153264