HTTP服务代码:
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
// 获取客户端POST方式传递的参数
body, _ := ioutil.ReadAll(r.Body)
fmt.Println(string(body))
// 向客户端返回JSON数据
result := make(map[string]interface{})
result["param1"] = "result1"
result["param2"] = "result2"
w.Header().Set("Content-Type", "application/json")
json, _ := json.Marshal(result)
w.Write(json)
}
func main() {
http.HandleFunc("/hello", helloHandler)
// 使用命令行启动程序,接口URL地址:http://localhost:8080/hello
// 请求方式:POST或GET POST时参数可填:{"param1":"param1","param2":"param2"}
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err.Error())
}
}
有疑问加站长微信联系(非本文作者)
本文来自:简书
感谢作者:更多精彩内容【iOS】搭建本地http服务,并实现简单的GET与POST请求焚雪残阳(转)HTTP协议及其POST与GET操作差异 & C#中如何使用POST、GET等拉肚柳岩回得也巧:“就是你有什么事了,我愿意帮忙出来站台。”私交倒成了“不一定的事情”