码迷,mamicode.com
首页 > Web开发 > 详细

golang 利用http.Client POST数据

时间:2014-11-24 12:09:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   for   数据   on   ad   

package main

import (
	"fmt"
	"io/ioutil"
	"net/http"
	"net/url"
	"strings"
)

func main() {
	v := url.Values{}
	v.Set("huifu", "hello world")
	body := ioutil.NopCloser(strings.NewReader(v.Encode())) //把form数据编下码
	client := &http.Client{}
	req, _ := http.NewRequest("POST", "http://192.168.2.83:8080/bingqinggongxiang/test2", body)

	req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value") //这个一定要加,不加form的值post不过去,被坑了两小时
	fmt.Printf("%+v\n", req)                                                         //看下发送的结构

	resp, err := client.Do(req) //发送
	defer resp.Body.Close()     //一定要关闭resp.Body
	data, _ := ioutil.ReadAll(resp.Body)
	fmt.Println(string(data), err)
}



golang 利用http.Client POST数据

标签:http   io   ar   os   sp   for   数据   on   ad   

原文地址:http://my.oschina.net/tongjh/blog/348091

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!