我是靠谱客的博主 大力春天,最近开发中收集的这篇文章主要介绍go语言实现简单http服务的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文实例讲述了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=300x300&cht=qr&choe=UTF-8&chl={{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语言实现简单http服务的方法的全部内容,希望文章能够帮你解决go语言实现简单http服务的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(131)

评论列表共有 0 条评论

立即
投稿
返回
顶部