[TOC]
# 简介
http WEB服务器:
~~~
1. 注册回调函数:http.HandleFunc("/", myHandler)
func myHandler(w http.ResponseWriter, r *http.Request)
w:给客户端回发数据
r:从客户端读到的数据
type ResponseWriter interface {
Header() Header
Write([]byte) (int, error)
WriteHeader(int)
}
type Request struct {
Method string // 浏览器请求方法 GET、POST⋯
URL *url.URL // 浏览器请求的访问路径
⋯⋯
Header Header // 请求头部
Body io.ReadCloser // 请求包体
RemoteAddr string // 浏览器地址
⋯⋯
ctx context.Context
}
2. 绑定服务器地址结构:http.ListenAndServe("127.0.0.1:8000", nil)
参2:通常传 ni 。 表示 让服务端 调用默认的 http.DefaultServeMux 进行处理
~~~
# 使用
~~~
func myHandler(w http.ResponseWriter, r *http.Request) {
fmt.Println("r.Method = ", r.Method)
fmt.Println("r.URL = ", r.URL)
fmt.Println("r.Header = ", r.Header)
fmt.Println("r.Body = ", r.Body)
//回复
io.WriteString(w, "hello world\n")
}
func main() {
//第一个参数是url的
http.HandleFunc("/", myHandler)
//用于指定的tcp网络地址监听
//第一个参数是监听地址,第二个参数是服务端处理程序,通常为空,为空表示服务端调用http.DefaultServeMux处理
err := http.ListenAndServe("127.0.0.1:8183", nil)
if err != nil {
fmt.Println("有错误: ", err)
}
}
~~~
## 默认 Handler
* NotFountHandler
~~~
http.ListenAndServe(":8081", http.NotFoundHandler())
~~~
* RedirectHandler
~~~
http.ListenAndServe(":8081", http.RedirectHandler("/test", 302))
~~~
* FileServer
~~~
http.ListenAndServe(":8081", http.FileServer(http.Dir("./")))
~~~
# get
~~~
func myHandler(w http.ResponseWriter, r *http.Request) {
//解析参数,默认是不会解析的
r.ParseForm()
fmt.Fprintf(w, "%v\n", r.Form)
fmt.Fprintf(w, "path:%s\n", r.URL.Path)
fmt.Fprintf(w, "schema:%s\n", r.URL.Scheme)
//get查询字符串
fmt.Fprintf(w, "form:%s\n", r.Form)
//控制台打印
for k, v := range r.Form {
fmt.Println("key: ", k)
fmt.Println("value: ", strings.Join(v, ""))
}
fmt.Fprintf(w, "hello world\n")
}
func main() {
//第一个参数是url的
http.HandleFunc("/", myHandler)
//用于指定的tcp网络地址监听
//第一个参数是监听地址,第二个参数是服务端处理程序,通常为空,为空表示服务端调用http.DefaultServeMux处理
err := http.ListenAndServe("127.0.0.1:8183", nil)
if err != nil {
fmt.Println("有错误: ", err)
}
}
~~~
# post
~~~
func myHandler(w http.ResponseWriter, r *http.Request) {
method := r.Method
if method == "GET" {
t, err := template.ParseFiles("./index.html")
if err != nil {
fmt.Fprintf(w, "载入页面错误")
return
}
t.Execute(w, nil)
} else if method == "POST" {
r.ParseForm()
fmt.Printf("username: %s\n", r.FormValue("username"))
fmt.Printf("password: %s\n", r.FormValue("password"))
fmt.Fprintf(w, "username: %s, password: %s\n", r.FormValue("username"), r.FormValue("password"))
}
}
func main() {
//第一个参数是url的
http.HandleFunc("/", myHandler)
//用于指定的tcp网络地址监听
//第一个参数是监听地址,第二个参数是服务端处理程序,通常为空,为空表示服务端调用http.DefaultServeMux处理
err := http.ListenAndServe("127.0.0.1:8183", nil)
if err != nil {
fmt.Println("有错误: ", err)
}
}
~~~
# 模板
~~~
"html/template"
~~~
~~~
func myHandler(w http.ResponseWriter, r *http.Request) {
t, err := template.ParseFiles("./index.html")
if err != nil {
fmt.Fprintf(w, "载入页面错误")
return
}
//第二个参数就是模板那的
t.Execute(w, "mary")
}
func main() {
//第一个参数是url的
http.HandleFunc("/", myHandler)
//用于指定的tcp网络地址监听
//第一个参数是监听地址,第二个参数是服务端处理程序,通常为空,为空表示服务端调用http.DefaultServeMux处理
err := http.ListenAndServe("127.0.0.1:8183", nil)
if err != nil {
fmt.Println("有错误: ", err)
}
}
~~~
页面上
~~~
<h1>{{.}}</h1>
~~~
## 模板中的结构体
~~~
type UserInfo struct {
Name string
Sex string
Age int
}
func myHandler(w http.ResponseWriter, r *http.Request) {
t, err := template.ParseFiles("./index.html")
if err != nil {
fmt.Fprintf(w, "载入页面错误")
return
}
user := UserInfo{
Name: "Mary",
Sex: "男",
Age: 18,
}
//第二个参数就是模板那的
t.Execute(w, user)
}
~~~
html
~~~
<h1>{{.}}</h1>
<h1>{{.Name}}</h1>
<h1>{{.Sex}}</h1>
<h1>{{.Age}}</h1>
~~~
## 模板中的map
~~~
t, err := template.ParseFiles("./index.html")
if err != nil {
fmt.Fprintf(w, "载入页面错误")
return
}
m := make(map[string]interface{})
m["name"] = "mary"
m["sex"] = "男"
m["age"] = 18
//第二个参数就是模板那的
t.Execute(w, m)
~~~
html
~~~
<h1>{{.}}</h1>
<h1>{{.name}}</h1>
<h1>{{.sex}}</h1>
<h1>{{.age}}</h1>
~~~
## 判断
~~~
{{if gt .age 18}}
<p>hello, old man, {{.name}}</p>
{{else}}
<p>hello, young man, {{.name}}</p>
{{end}}
~~~
- 基础
- 简介
- 主要特征
- 变量和常量
- 编码转换
- 数组
- byte与rune
- big
- sort接口
- 和mysql类型对应
- 函数
- 闭包
- 工作区
- 复合类型
- 指针
- 切片
- map
- 结构体
- sync.Map
- 随机数
- 面向对象
- 匿名组合
- 方法
- 接口
- 权限
- 类型查询
- 异常处理
- error
- panic
- recover
- 自定义错误
- 字符串处理
- 正则表达式
- json
- 文件操作
- os
- 文件读写
- 目录
- bufio
- ioutil
- gob
- 栈帧的内存布局
- shell
- 时间处理
- time详情
- time使用
- new和make的区别
- container
- list
- heap
- ring
- 测试
- 单元测试
- Mock依赖
- delve
- 命令
- TestMain
- path和filepath包
- log日志
- 反射
- 详解
- plugin包
- 信号
- goto
- 协程
- 简介
- 创建
- 协程退出
- runtime
- channel
- select
- 死锁
- 互斥锁
- 读写锁
- 条件变量
- 嵌套
- 计算单个协程占用内存
- 执行规则
- 原子操作
- WaitGroup
- 定时器
- 对象池
- sync.once
- 网络编程
- 分层模型
- socket
- tcp
- udp
- 服务端
- 客户端
- 并发服务器
- Http
- 简介
- http服务器
- http客户端
- 爬虫
- 平滑重启
- context
- httptest
- 优雅中止
- web服务平滑重启
- beego
- 安装
- 路由器
- orm
- 单表增删改查
- 多级表
- orm使用
- 高级查询
- 关系查询
- SQL查询
- 元数据二次定义
- 控制器
- 参数解析
- 过滤器
- 数据输出
- 表单数据验证
- 错误处理
- 日志
- 模块
- cache
- task
- 调试模块
- config
- 部署
- 一些包
- gjson
- goredis
- collection
- sjson
- redigo
- aliyunoss
- 密码
- 对称加密
- 非对称加密
- 单向散列函数
- 消息认证
- 数字签名
- mysql优化
- 常见错误
- go run的错误
- 新手常见错误
- 中级错误
- 高级错误
- 常用工具
- 协程-泄露
- go env
- gometalinter代码检查
- go build
- go clean
- go test
- 包管理器
- go mod
- gopm
- go fmt
- pprof
- 提高编译
- go get
- 代理
- 其他的知识
- go内存对齐
- 细节总结
- nginx路由匹配
- 一些博客
- redis为什么快
- cpu高速缓存
- 常用命令
- Go 永久阻塞的方法
- 常用技巧
- 密码加密解密
- for 循环迭代变量
- 备注
- 垃圾回收
- 协程和纤程
- tar-gz
- 红包算法
- 解决golang.org/x 下载失败
- 逃逸分析
- docker
- 镜像
- 容器
- 数据卷
- 网络管理
- 网络模式
- dockerfile
- docker-composer
- 微服务
- protoBuf
- GRPC
- tls
- consul
- micro
- crontab
- shell调用
- gorhill/cronexpr
- raft
- go操作etcd
- mongodb