数据采集
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

25 satır
522 B

  1. package mw
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. )
  6. // DB is 中间件 用来检查master_id是否有对应的数据库engine
  7. func DB(c *gin.Context) {
  8. fmt.Println(c.Request.Header)
  9. masterID := c.GetHeader("master_id")
  10. fmt.Println("master_id", masterID)
  11. if masterID == "" {
  12. fmt.Println("not found master_id found MasterId start")
  13. masterID = c.GetHeader("MasterId")
  14. fmt.Println("MasterId", masterID)
  15. // if masterID still emtpy
  16. }
  17. fmt.Println("master_id", masterID)
  18. c.Set("mid", masterID)
  19. c.Next()
  20. }