golang的http.HandleFunc使用正则匹配路由

前端之家收集整理的这篇文章主要介绍了golang的http.HandleFunc使用正则匹配路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于只是写一个博客自定义一个路由器没(wo)有(hai)必(bu)要(hui),实现一个简单的路由即可

package router

import (
    "net/http"
    "zhfblog/controller"
    "regexp"
    "fmt"
)

// 路由定义
type routeInfo struct {
    pattern string                                       // 正则表达式
    f       func(w http.ResponseWriter,r *http.Request) //Controller函数
}

// 路由添加
var routePath = []routeInfo{
    routeInfo{"^/a/$",controller.Index},}

// 使用正则路由转发
func Route(w http.ResponseWriter,r *http.Request) {
    isFound := false
    for _,p := range routePath {
        // 这里循环匹配Path,先添加的先匹配
        reg,err := regexp.Compile(p.pattern)
        if err != nil {
            continue
        }
        if reg.MatchString(r.URL.Path) {
            isFound = true
            p.f(w,r)
        }
    }
    if !isFound {
        // 未匹配到路由
        fmt.Fprint(w,"404 Page Not Found!")
    }
}

func init() {
    // 使用"/"匹配所有路由到自定义的正则路由函数Route
    // 只需在main包导入该路由包即可
    // import _ "zhfblog/router"
    http.HandleFunc("/",Route)
}
原文链接:https://www.f2er.com/go/189322.html

猜你在找的Go相关文章