码迷,mamicode.com
首页 > 其他好文 > 详细

gorilla/mux 的学习

时间:2019-09-25 12:20:48      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:mux   https   var   second   nbsp   add   port   log   fun   

原文链接: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 的学习

标签:mux   https   var   second   nbsp   add   port   log   fun   

原文地址:https://www.cnblogs.com/wangjq19920210/p/11583646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!