作為一種流行的程式語言,Golang(也稱作Go)被廣泛用於開發高效能的網路應用程式。在本文中,我們將介紹如何使用Golang建立一個網頁應用程式。
首先,您需要在您的電腦上安裝Golang。您可以從官方網站:https://golang.org/ 下載適合您的作業系統的Golang安裝套件。在完成安裝後,您可以透過在命令列中輸入命令來確保Golang已經成功安裝:
$ go version go version go1.13.3 darwin/amd64
$ mkdir mywebapp $ cd mywebapp $ go mod init mywebapp
package main import ( "fmt" "net/http" ) func main() { http.HandleFunc("/", Hello) http.ListenAndServe(":8080", nil) } func Hello(w http.ResponseWriter, req *http.Request) { fmt.Fprintf(w, "Hello from my web app!") }
$ go run main.go
$ go get -u github.com/gorilla/mux
package main import ( "fmt" "net/http" "github.com/gorilla/mux" ) func main() { router := mux.NewRouter() router.HandleFunc("/", HomeHandler) router.HandleFunc("/products", ProductsHandler) router.HandleFunc("/articles", ArticlesHandler) router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static")))) http.ListenAndServe(":8080", router) } func HomeHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Welcome to the home page!") } func ProductsHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Welcome to the products page!") } func ArticlesHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Welcome to the articles page!") }
$ go run main.go
以上是如何使用Golang建立一個網頁應用程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!