http

Posted hualou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http相关的知识,希望对你有一定的参考价值。

go启动一个简单的httpserver
package main

import (
   "fmt"
   "log"
   "net/http"
)

func main() {
   http.HandleFunc("/", sayhelloName) //设置访问的路由

   err := http.ListenAndServe(":8080", nil) //设置监听的端口
   if err != nil {
      log.Fatal("ListenAndServe: ", err)
   }
}

func sayhelloName(w http.ResponseWriter, r *http.Request) {
   fmt.Fprintf(w, "Hello Wrold!") //这个写入到w的是输出到客户端的
}




以上是关于http的主要内容,如果未能解决你的问题,请参考以下文章

Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段

如何从一个片段导航到另一个片段?

这两个代码片段有啥区别?

超级有用的9个PHP代码片段

postman 自动生成 curl 代码片段

postman 自动生成 curl 代码片段