douzheng5717 2015-11-23 20:35
浏览 156
已采纳

如何使用NewDecode,Golang和req * http.Request解码和映射JSON对象

Coming from PHP I'm a TOTAL Golang newb here. I read a question that is VERY similar to mine but my implementation is slightly off. Whenever I go to decode using the following code the variable msg.Username is always blank. Golang doesn't throw errors here so I know I'm missing something super small here and very important but I have no idea what it could be. I would be a very appreciative of any help and am of course expecting this to be a fist-to-foerhead epiphany. Thanks!

//The JSON I'm posting to my local server is  
//{"company_domain":"example.com", "user_name":"testu","password":"testpw"}

func Login(w http.ResponseWriter, req *http.Request) {
  type Message struct {
      CompanyDomain string
      Username      string
      Password      string
  }
  //decode
  var msg Message
  decoder := json.NewDecoder(req.Body)
  err := decoder.Decode(&msg)
  if err != nil {
      err.Error())
  }
  w.Write([]byte(msg.Username))// <- This print statement always comes in blank 
  authorize, err := models.VerifyAuth(msg.Username, msg.Password, msg.CompanyDomain, w)
  if err != nil {
      err.Error())
  }
  ...
  • 写回答

2条回答 默认 最新

  • doutuoben6908 2015-11-23 20:37
    关注

    Tag your struct fields so the decoder knows how to map the json keys to your struct.

    type Message struct {
        CompanyDomain string `json:"company_domain"`
        Username      string `json:"user_name"`
        Password      string `json:"password"`
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序