报错提示优化

This commit is contained in:
磷叶 2024-11-11 09:04:19 +08:00
parent eb8f281092
commit 004c357153
2 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,7 @@ import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.common.config.WxConfig;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.http.HttpUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@ -15,6 +16,7 @@ import org.springframework.stereotype.Service;
* 2024/7/29
*/
@Service
@Slf4j
public class WxAuthService {
@ -54,7 +56,8 @@ public class WxAuthService {
Integer errcode = body.getInteger("errcode");
if (errcode == null || !errcode.equals(0)) {
throw new ServiceException("获取手机号失败:" + body.getString("errmsg"));
log.error("获取手机号失败 {}", body);
throw new ServiceException("获取手机号失败");
}
String phoneInfo = body.getString("phone_info");

View File

@ -107,7 +107,7 @@ public class UserValidatorImpl extends BaseValidator implements UserValidator {
query.setEqPhonenumber(mobile);
query.setExcludeUserId(userId);
int repeatCount = userService.selectCount(query);
ServiceUtil.assertion(repeatCount > 0, "用户手机号重复");
ServiceUtil.assertion(repeatCount > 0, "当前手机号已被绑定");
}
@Override