SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'a3b6420a-6' for key 'callId'

在提交注册信息的时候报错:

"SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'a3b6420a-6724-11ea-b2a3-d773d1d6999f' for key 'callId'\nThe SQL being executed was: INSERT INTO `ly_call` (`call_id`, `mobile`, `call_method`, `call_type`, `origin_mobile`, `status`, `call_status`, `type`, `customer_id`, `area`, `answer_id`, `department`, `is_frontend`, `created_at`, `updated_at`) VALUES ('a3b6420a-6724-11ea-b2a3-d773d1d6999f', '13825795639', 5, 0, '013825795639', 0, 0, 2, '0', '广东东莞', 100604121, 10179, 2, 1584321766, 1584321766)"

原因:主键冲突

从上图可以看出,callId必须唯一,如果填入重复的callId就会出错

解决方法:在控制器里面进行判断

TP5写法

                $data = input('post.');
                $callId = model('LyCall')->get(['callId'=>$data['callId']]);
               if(sizeof($callId)){
                   $this->error('该用户名已经拨打,请重新填写~~~');
                }
              

 Yii2.0写法

 $callId= Yii::$app->request->post('callId');
            $info = LyCall::findOne(['callId'=>$callId]);

            if (!empty($info)) {
                throw new LyException($callId . '已经存在!');
            }

 

添加上面代码之后,如果拨打电话,重复callId就会给用户相关提示~~~

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值