码迷,mamicode.com
首页 > Web开发 > 详细

GO1.5标准包http.FileServer的拔高用法.

时间:2015-08-31 21:44:22      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:golang1.5   golang   go语言   http   

<pre style="margin-top: 0px; margin-bottom: 0px;"><span style=" color:#0000ff;">package</span><span style=" color:#f57900;"> </span>main

import (
    "fmt"
    "net/http"
)

func main() {
    h := http.FileServer(http.Dir("./"))
    http.ListenAndServe(":1789", ce(h))

}

func ce(h http.Handler) http.Handler {
    return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
        fmt.Println(r.URL.Path)
        h.ServeHTTP(w, r)
    })
}


    
        

版权声明:本文为博主原创文章,未经博主允许不得转载。

GO1.5标准包http.FileServer的拔高用法.

标签:golang1.5   golang   go语言   http   

原文地址:http://blog.csdn.net/fyxichen/article/details/48139271

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