golang net/http模塊
搭建網(wǎng)站的歡迎頁面
http.HandleFunc()
用于給HTTP服務(wù)注冊(cè)請(qǐng)求處理程序芋类;它接收兩個(gè)參數(shù),一個(gè)是要匹配pattern(通常是uri)沧奴,一個(gè)是用于處理的函數(shù)。
func HandleFunc(pattern string, handler func(ResponseWriter, *Request))
func (w http.ResponseWriter, r *http.Request)
接收兩個(gè)參數(shù),http.ResponseWriter
苛聘,可以把響應(yīng)寫入其中,http.Request
包含請(qǐng)求的所有信息忠聚,比如請(qǐng)求uri设哗、請(qǐng)求頭等。
package main
import (
"fmt"
"net/http"
)
// 使用golang 的net/http模塊創(chuàng)建簡(jiǎn)易的網(wǎng)站
func main() {
// HandleFunc用于注冊(cè)請(qǐng)求處理函數(shù)
// 接收一個(gè)匿名函數(shù)作為參數(shù)两蟀,處理請(qǐng)求和響應(yīng)
http.HandleFunc("/hello", func(writer http.ResponseWriter, request *http.Request) {
fmt.Fprintf(writer, "Hello, welcome to access my website: %s. \n", request.URL.Path)
})
// 監(jiān)聽端口网梢,把請(qǐng)求傳遞給請(qǐng)求處理程序
http.ListenAndServe(":8080", nil)
}
上面的請(qǐng)求就搭建了一個(gè)網(wǎng)站的歡迎頁面,在瀏覽器中訪問http://localhost:8080/hello
時(shí)赂毯,請(qǐng)求處理程序會(huì)把歡迎的語句打印到響應(yīng)頁面中战虏。
HTTP Server的基本能力
一個(gè)基本的http server需要以下幾個(gè)功能:
處理動(dòng)態(tài)請(qǐng)求:用戶瀏覽網(wǎng)站時(shí)發(fā)起的各種請(qǐng)求,如登錄党涕、下載圖片
靜態(tài)資源服務(wù):向?yàn)g覽器提供靜態(tài)的 JavaScript烦感、 CSS 和圖像服務(wù),為用戶創(chuàng)建動(dòng)態(tài)體驗(yàn)
接收連接:http server必須要監(jiān)聽在某一個(gè)端口上膛堤,接收所有發(fā)起請(qǐng)求的連接
處理動(dòng)態(tài)請(qǐng)求
第一節(jié)中歡迎頁面的示例其實(shí)就屬于動(dòng)態(tài)的請(qǐng)求手趣,用戶訪問指定的uri,http server作出相應(yīng)的相應(yīng)肥荔。此外由于請(qǐng)求處理函數(shù)接收的`http.Requset`參數(shù)包含所有請(qǐng)求的所有信息绿渣,http server也可以處理請(qǐng)求中的相關(guān)參數(shù)。
例如我在第一節(jié)中的代碼新注冊(cè)一個(gè)整型數(shù)字加法的功能次企,通過`r.URL.Query().Get("param")`可以獲取GET請(qǐng)求URL中的參數(shù)怯晕。
http.HandleFunc("/calc", func(w http.ResponseWriter, r *http.Request) {
a := r.URL.Query().Get("a")
b := r.URL.Query().Get("b")
inta, err := strconv.Atoi(a)
if err != nil {
fmt.Fprintf(w, "param a is not a int number!\n")
panic(err)
}
intb, err := strconv.Atoi(b)
if err != nil {
fmt.Fprintf(w, "param b is not a int number!\n")
panic(err)
}
fmt.Fprintf(w, "plus two integer:\n")
fmt.Fprintf(w, "a + b = %v \n", inta+intb)
})
靜態(tài)資源服務(wù)
靜態(tài)資源通常是html、css缸棵、js舟茶、圖片等文件。它們通常存放在web服務(wù)的某一個(gè)目錄堵第,一般叫/public或/static吧凉。net/http模塊內(nèi)置的http.FileServer()
方法可以指定FileSystem的路徑作為請(qǐng)求目錄的根路徑并返回一個(gè)處理程序。http.Dir()
把指定的路徑封裝成FileSytem對(duì)象并傳入http.FileServer()
踏志。
在main.go的同級(jí)目錄下創(chuàng)建一個(gè)web文件夾阀捅,用于存放各類靜態(tài)資源,在web目錄下創(chuàng)建一個(gè)public文件夾存放html資源针余,目錄結(jié)構(gòu)如下:
-main.go
-web
-public
-index.html
注冊(cè)靜態(tài)資源服務(wù)的處理程序饲鄙,并構(gòu)造一個(gè)index.html頁面:
// 為js凄诞、css、html忍级、圖片等靜態(tài)資源服務(wù)
welcomepage := http.FileServer(http.Dir("path/web/public/"))
http.Handle("/", welcomepage)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>htmlAsset</title>
</head>
<body>
<h2>welcome to the html page.</h2>
<p>this is a static asset.</p>
</body>
</html>
重啟http server后在瀏覽器中訪問http://localhost:8080/index.html
帆谍,用戶即可與靜態(tài)資源交互。
當(dāng)然js等靜態(tài)資源同樣能訪問轴咱,創(chuàng)建一個(gè)calculator.html:
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>myCalculator</title>
</head>
<style>
.box {
width: 400px;
height: 100px;
background: #00ffff;
position: absolute;
left: 50%;
margin-left: -100px;
}
</style>
<body>
<div class="box">
<input type="text" id="inta" value=""/>
+
<input type="text" id="intb" value="" />
=
<input type="text" id="plus" value="">
</br>
<input type="button" name="calc-plus" value=" 計(jì)算 " onclick="calc()" >
</div>
</body>
<script type="text/javascript">
function calc() {
var num1 = parseInt(document.getElementById("inta").value);
var num2 = parseInt(document.getElementById("intb").value);
document.getElementById("plus").value = num1+num2;
}
</script>
</html>
接收連接
完成簡(jiǎn)易http server的最后一步就是監(jiān)聽端口接受所有來自互聯(lián)網(wǎng)上的連接(請(qǐng)求)汛蝙。當(dāng)然也如前面的示例一樣,通過http.ListenAndServe
實(shí)現(xiàn)朴肺。