中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Go語言怎樣寫Web應用程序

發布時間:2021-11-17 16:00:04 來源:億速云 閱讀:155 作者:柒染 欄目:web開發

這期內容當中小編將會給大家帶來有關Go語言怎樣寫Web應用程序,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

從這里開始

你要有一個可以運行Go語言的計算機或虛擬機,怎么樣安裝Go,請參考安裝Go教程。首先創建一個目錄,在目錄下創建一個wiki.go文件,用你喜歡的編輯器打開并輸入以下內容:

package main  import (     "fmt"     "io/ioutil"     "os" )

這fmt,ioutil和os都是go語言的標準庫,一會我將增加其他方法和更多的包。

數據結構

讓我們聲明一個數據結構,這個結構主要包含兩個字段,一個是標題,一個是內容。

type Page struct {     Title    string     Body    []byte }

接下來,我們給Page 這個結構體寫個保存方法,代碼如下:

func (p *Page) save() os.Error {     filename := p.Title + ".txt"     return ioutil.WriteFile(filename, p.Body, 0600) }

這個方法的簽名是:接收一個Page結構體指針,返回一個os.Error錯誤。

在一下的代碼中還是用了http包和模板包,具體內容參考具體代碼,再這里就不詳細貼出來了。下面是模板內容,把他們放到wiki.go同一目錄下。

編輯頁面 模板eidt.html

<h2>Editing {{.Title |html}}</h2>  <form action="/save/{{.Title |html}}" method="POST"> <div><textarea name="body" rows="20" cols="80">{{printf "%s" .Body |html}}</textarea></div> <div><input type="submit" value="Save"></div> </form>

查看頁面模板view.html

  1. <h2>{{.Title |html}}</h2> 

  2. <p>[<a href="/edit/{{.Title |html}}">edit</a>]</p> 

  3. <div>{{printf "%s" .Body |html}}</div> 

完整代碼:wiki.go

package main  import (     "http"     "io/ioutil"     "os"     "regexp"     "template" )  type Page struct {     Title string     Body  []byte }  func (p *Page) save() os.Error {     filename := p.Title + ".txt"     return ioutil.WriteFile(filename, p.Body, 0600) }  func loadPage(title string) (*Page, os.Error) {     filename := title + ".txt"     body, err := ioutil.ReadFile(filename)     if err != nil {         return nil, err     }     return &Page{Title: title, Body: body}, nil }  func viewHandler(w http.ResponseWriter, r *http.Request, title string) {     p, err := loadPage(title)     if err != nil {         http.Redirect(w, r, "/edit/"+title, http.StatusFound)         return     }     renderTemplate(w, "view", p) }  func editHandler(w http.ResponseWriter, r *http.Request, title string) {     p, err := loadPage(title)     if err != nil {         p = &Page{Title: title}     }     renderTemplate(w, "edit", p) }  func saveHandler(w http.ResponseWriter, r *http.Request, title string) {     body := r.FormValue("body")     p := &Page{Title: title, Body: []byte(body)}     err := p.save()     if err != nil {         http.Error(w, err.String(), http.StatusInternalServerError)         return     }     http.Redirect(w, r, "/view/"+title, http.StatusFound) }  var templates = make(map[string]*template.Template)  func init() {     for _, tmpl := range []string{"edit", "view"} {         t := template.Must(template.ParseFile(tmpl + ".html"))         templates[tmpl] = t     } }  func renderTemplate(w http.ResponseWriter, tmpl string, p *Page) {     err := templates[tmpl].Execute(w, p)     if err != nil {         http.Error(w, err.String(), http.StatusInternalServerError)     } }  const lenlenPath = len("/view/")  var titleValidator = regexp.MustCompile("^[a-zA-Z0-9]+$")  func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc {     return func(w http.ResponseWriter, r *http.Request) {         title := r.URL.Path[lenPath:]         if !titleValidator.MatchString(title) {             http.NotFound(w, r)             return         }         fn(w, r, title)     } }  func main() {     http.HandleFunc("/view/", makeHandler(viewHandler))     http.HandleFunc("/edit/", makeHandler(editHandler))     http.HandleFunc("/save/", makeHandler(saveHandler))     http.ListenAndServe(":8080", nil) }

運行測試:

$ 8g wiki.go

$ 8l wiki.8

$ ./8.out

在地址欄輸入地址:http://localhost:8080/view/aNewPage

效果圖:

Go語言怎樣寫Web應用程序
Go語言怎樣寫Web應用程序

上述就是小編為大家分享的Go語言怎樣寫Web應用程序了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚东县| 双鸭山市| 阿合奇县| 鹤庆县| 五莲县| 政和县| 封丘县| 兴城市| 扶余县| 宁国市| 丰原市| 内江市| 五大连池市| 西贡区| 娄底市| 兴山县| 新晃| 绥棱县| 博乐市| 荆州市| 沙雅县| 常州市| 宾川县| 彰化市| 临漳县| 乳山市| 三门县| 通许县| 綦江县| 清远市| 怀集县| 南丹县| 图们市| 宿迁市| 新绛县| 东乡族自治县| 农安县| 密云县| 澄迈县| 武城县| 鲜城|