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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?