首页 > Web开发 > 详细

A Tour of Go Exercise: HTTP Handlers

时间:2014-10-28 23:50:08      阅读:466      评论:0      收藏:0      [点我收藏+]

Implement the following types and define ServeHTTP methods on them. Register them to handle specific paths in your web server.

type String string

type Struct struct {
    Greeting string
    Punct    string
    Who      string
}

For example, you should be able to register handlers using:

http.Handle("/string", String("I‘m a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})


package main

import (
    "net/http"
    "fmt"
)
type String string

type Struct struct {
    Greeting string
    Punct    string
    Who      string
}


func (h Struct) ServeHTTP(
    w http.ResponseWriter,
    r *http.Request) {
    fmt.Fprint(w, h)
}
func (s String) ServeHTTP(
    w http.ResponseWriter,
    r *http.Request) {
    fmt.Fprint(w, s)
}

func main() {
    http.Handle("/string", String("I‘m a frayed knot."))
    http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
    // your http.Handle calls here
    http.ListenAndServe("localhost:4000", nil)

}

 

A Tour of Go Exercise: HTTP Handlers

原文:http://www.cnblogs.com/ghgyj/p/4058214.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!