响应http的三种方法

Posted Litter1996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了响应http的三种方法相关的知识,希望对你有一定的参考价值。

小编最近再看无闻的goweb视屏,总结视屏中三种go响应http的方法

 

1.直接用  http.HandleFunc()  函数

技术分享图片
// object project main.go
package main

import (
    "io"
    "log"
    "net/http"
)

func main() {

    http.HandleFunc("/", sayhello)
    // 第一个参数代表访问的路径,第二个代表要执行的函数的名字
    
    err := http.ListenAndServe(":8080", nil)
    //设置端口号,第二个暂时没有,写为nil,在接下来的方法中介绍
    if err != nil {
        log.Fatal(err)
        //如果err不为空,打印err
    }

}

//ResponseWriter为接口,Request为结构体
func sayhello(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "hello!this is version 1")
}
View Code

2.介绍Handle方法

技术分享图片
package main // dealFile project main.go

import (
    "io"
    "log"
    "net/http"
    "os"
)

func main() {
    //首先实现 NewServeMux()方法
    max := http.NewServeMux()

    max.Handle("/", &myHandler{})
    max.HandleFunc("/hello", sayhello)

    //静态文件的实现
    wd, err := os.Getwd()
    if err != nil {
        log.Fatal(err)
    }

    max.Handle("/static/",
        http.StripPrefix("/static/",
            http.FileServer(http.Dir(wd))))

    //设置监听的端口号
    err = http.ListenAndServe(":8080", max)
    if err != nil {
        log.Fatal(err)
    }

}

type myHandler struct{}

//实现ServeHTTP方法
func (*myHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "URL:"+r.URL.String())
}

func sayhello(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "Hello world,this is version 2")
}
View Code

3.Server

技术分享图片
package main

import (
    "io"
    "log"
    "net/http"
    "time"
)

var mux map[string]func(http.ResponseWriter, *http.Request)

func main() {
    server := http.Server{
        Addr:        ":8080", //端口号
        Handler:     &myHandler{},  //实现的Handler
        ReadTimeout: 5 * time.Second,  //响应等待时间
    }

    mux = make(map[string]func(http.ResponseWriter, *http.Request))
    mux["/hello"] = sayHello
    mux["/bye"] = sayBye

    err := server.ListenAndServe()
    if err != nil {
        log.Fatal(err)
    }
}

type myHandler struct{}

func (*myHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    //判断URL是否为空并输出
    if h, ok := mux[r.URL.String()]; ok {
        h(w, r)
        return
    }
    io.WriteString(w, "URL:"+r.URL.String())
}

func sayHello(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "Hello World")
}

func sayBye(w http.ResponseWriter, r *http.Request) {
    io.WriteString(w, "Bye Bye")
}
View Code

 

以上是关于响应http的三种方法的主要内容,如果未能解决你的问题,请参考以下文章

Linux 添加开机启动项的三种方法

linux 添加开机启动项的三种方法

URL转Drawable之 Android中获取网络图片的三种方法

ActionListener的三种实现方法

HTTP的三种工作模型

WCF的三种模式