donglulong0877 2015-06-15 01:44
浏览 32
已采纳

无法在GO中将JSON作为正文发送给HTTP POST请求

When i make the POST request using the below GO Function. I get a invalid json on the server side.

If i send static json for example

var jsonprep = []byte(`{"username":"xyz@gmail.com","password":"xyz123"}`) 

it does work instead of

var jsonprep string = "`{username:"+username+",password:"+password+"}`"

.

func makeHttpPostReq(url string, username string, password string){

    client := http.Client{}


    var jsonprep string = "`{username:"+username+",password:"+password+"}`"

    var jsonStr = []byte(jsonprep)

    req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonStr))
    req.Header.Set("Content-Type", "application/json")

    resp, err := client.Do(req)
    if err != nil {
         fmt.Println("Unable to reach the server.")
    } else {
         body, _ := ioutil.ReadAll(resp.Body)
         fmt.Println("body=", string(body))
    }

}
  • 写回答

2条回答 默认 最新

  • douxiongzhen2126 2015-06-15 02:54
    关注

    You've got your quoting wrong:

    http://play.golang.org/p/PueWyQ1atq

    var jsonprep string = "`{username:"+username+",password:"+password+"}`"
    
    ===> `{username:Bob,password:pass}`
    

    You meant:

    http://play.golang.org/p/LMuwxArf8G

    var jsonprep string = `{"username":"`+username+`","password":"`+password+`"}`
    ===> {"username":"Bob","password":"pass"}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥20 白日门传奇少一个启动区服和启动服务器的快捷键,东西都是全的 , 他们说套一个出来就行了 但我就是弄不好,谁看看,
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数