소스 검색

update

master
dengbiao 5 달 전
부모
커밋
5ccfecde99
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      rule/mw/mw_db.go

+ 6
- 0
rule/mw/mw_db.go 파일 보기

@@ -38,6 +38,12 @@ func GetMasterId(baseDb *xorm.Engine, c *gin.Context) (masterId string) {
masterId = svc.GetWebSiteDomainMasterId(baseDb, md.PLATFORM_PC, c.Request.Host)
}
}
if masterId == "" && c.GetHeader("Platform") == "" { // 无平台访问
hostList := strings.Split(c.Request.Host, ".")
if isNumeric(hostList[0]) {
masterId = hostList[0]
}
}
}
fmt.Println("master_id:::::::", masterId)
return


불러오는 중...
취소
저장