代码拉取完成,页面将自动刷新
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func test1() {
data := map[string]interface{}{
"fullname": "时代佳苑",
}
jsonData, _ := json.Marshal(data)
fmt.Println("Sending JSON data:", string(jsonData))
resp, err := http.Post("http://10.42.2.147:8088/access_token=ggsytest", "application/json", bytes.NewBuffer(jsonData))
// resp, err := http.Post("http://localhost:8484/test", "application/json", bytes.NewBuffer(jsonData))
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println("1004 Response body:", string(body))
}
func test2() {
data := map[string]interface{}{
"fullname": "时代佳苑",
}
jsonData, _ := json.Marshal(data)
fmt.Println("Sending JSON data:", string(jsonData))
resp, err := http.Post("http://10.42.2.147:8088/access_token=ggsytest", "application/json", bytes.NewBuffer(jsonData))
// resp, err := http.Post("http://localhost:8484/test", "application/json", bytes.NewBuffer(jsonData))
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
fmt.Println("1004 Response body:", string(body))
}
func main() {
test1()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。