gorilla/mux 的学习

Posted wangjq19920210

tags:

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

原文链接:gorilla/mux的学习

源代码:

package main

import (
    "encoding/json"
    "fmt"
    "github.com/gorilla/mux"
    "io/ioutil"
    "net/http"
    "net/url"
    "time"
)

//get
func hello(w http.ResponseWriter, r *http.Request) 
    //参数解析
    params, _ := url.ParseQuery(r.URL.RawQuery)
    msg := "hello" + params["msg"][0]
    fmt.Println(msg)
    w.Write([]byte(msg))


//post
func hello1(w http.ResponseWriter, r *http.Request) 
    //参数解析
    body, _ := ioutil.ReadAll(r.Body)
    var params map[string]string
    json.Unmarshal(body, &params)
    fmt.Println(params["msg"])
    resp := "hello" + params["msg"]
    w.Write([]byte(resp))


func main() 
    Router := mux.NewRouter()
    //配置路由
    Router.HandleFunc("/hello", hello).Methods("GET") //可以不定参
    Router.HandleFunc("/hello1", hello1).Methods("POST")

    //设置端口 路由
    server := http.Server
        Addr:         ":11111",
        ReadTimeout:  time.Second,
        WriteTimeout: time.Second,
        Handler:      Router,
    
    //启动监听
    server.ListenAndServe()

 

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

GolangWeb 入门 08 集成 Gorilla Mux

GolangWeb 入门 08 集成 Gorilla Mux

如何组织 gorilla mux 路线?

Gorilla Mux 和 GORM 失败

Gorilla mux 自定义中间件

在 Gorilla Mux 中嵌套子路由器