本文实例讲述了go语言实现简单http服务的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
package main
import (
"flag"
"log"
"net/http"
"text/template"
)
var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18
var templ = template.Must(template.New("qr").Parse(templateStr))
func main() {
flag.Parse()
http.Handle("/", http.HandlerFunc(QR))
err := http.ListenAndServe(*addr, nil)
if err != nil {
log.Fatal("ListenAndServe:", err)
}
}
func QR(w http.ResponseWriter, req *http.Request) {
templ.Execute(w, req.FormValue("s"))
}
const templateStr = `
html>
head>
title>QR Link Generator/title>
/head>
body>
{{if .}}
img src="http://chart.apis.google.com/chart?chs=300x300cht=qrchoe=UTF-8chl={{urlquery .}}" />
br>
{{html .}}
br>
br>
{{end}}
form action="/" name=f method="GET">input maxLength=1024 size=70
name=s value="" title="Text to QR Encode">input type=submit
value="Show QR" name=qr>
/form>
/body>
/html>
希望本文所述对大家的Go语言程序设计有所帮助。
您可能感兴趣的文章:- Go语言服务器开发之简易TCP客户端与服务端实现方法
- go语言实现一个简单的http客户端抓取远程url的方法
- Go语言的http/2服务器功能及客户端使用
- go语言实现一个最简单的http文件服务器实例
- go语言实现http服务端与客户端的例子