Pārlūkot izejas kodu

update

add_mode
DengBiao pirms 1 gada
vecāks
revīzija
d6b975ffc8
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. +3
    -3
      app/customer/hdl/hdl_login.go

+ 3
- 3
app/customer/hdl/hdl_login.go Parādīt failu

@@ -185,11 +185,11 @@ func Register(c *gin.Context) {
return
}
// 编译正则表达式
pattern := `^1[3456789]d{9}$`
reg := regexp.MustCompile(pattern)
pattern := `^1[3456789]\d{9}$`
r := regexp.MustCompile(pattern)

// 验证手机号码
if !reg.MatchString(req.Phone) {
if !r.MatchString(req.Phone) {
e.OutErr(c, e.ERR, "非法手机号")
return
}


Notiek ielāde…
Atcelt
Saglabāt