golang实现http post

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)
}

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...