第三方路由库httprouter的基本操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第三方路由库httprouter的基本操作相关的知识,希望对你有一定的参考价值。
package main
import (
"net/http"
"github.com/julienschmidt/httprouter"
"io"
)
//第三个参数p是httprouter新增的
func CreateUser(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
//io.WriteString(w, "create user")
io.WriteString(w, p.ByName("user_name") + "
")
//如果没有的则不会输出
io.WriteString(w, p.ByName("fffffff") + "
")
io.WriteString(w, p.ByName(("pwd")) + "
")
}
//使用httprouter
func RegisterHandlers() *httprouter.Router {
router := httprouter.New()
router.GET("/user/:user_name/pwd/:pwd", CreateUser)
return router
}
func main() {
r := RegisterHandlers()
http.ListenAndServe(":8000", r)
}
输出:
以上是关于第三方路由库httprouter的基本操作的主要内容,如果未能解决你的问题,请参考以下文章