1. 首页
  2. 数据库
  3. 其它
  4. Go web基本应用

Go web基本应用

上传者: 2021-01-31 09:03:04上传 PDF文件 41.92KB 热度 19次
1、net.http 第一个版本 package main import ( io log net/http ) func main() { // 设置路由 http.HandleFunc(/, func(writer http.ResponseWriter, request *http.Request) { io.WriteString(writer, hello world! this is http test demo01) }) err := http.ListenAndServe(:8080, nil) if err !=
下载地址
用户评论