真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

成都創(chuàng)新互聯(lián)是一家專業(yè)提供??h企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、H5技術(shù)、小程序制作等業(yè)務(wù)。10年已為??h眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。

從這里開(kāi)始

你要有一個(gè)可以運(yùn)行Go語(yǔ)言的計(jì)算機(jī)或虛擬機(jī),怎么樣安裝Go,請(qǐng)參考安裝Go教程。首先創(chuàng)建一個(gè)目錄,在目錄下創(chuàng)建一個(gè)wiki.go文件,用你喜歡的編輯器打開(kāi)并輸入以下內(nèi)容:

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

這fmt,ioutil和os都是go語(yǔ)言的標(biāo)準(zhǔn)庫(kù),一會(huì)我將增加其他方法和更多的包。

數(shù)據(jù)結(jié)構(gòu)

讓我們聲明一個(gè)數(shù)據(jù)結(jié)構(gòu),這個(gè)結(jié)構(gòu)主要包含兩個(gè)字段,一個(gè)是標(biāo)題,一個(gè)是內(nèi)容。

type Page struct {     Title    string     Body    []byte }

接下來(lái),我們給Page 這個(gè)結(jié)構(gòu)體寫(xiě)個(gè)保存方法,代碼如下:

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

這個(gè)方法的簽名是:接收一個(gè)Page結(jié)構(gòu)體指針,返回一個(gè)os.Error錯(cuò)誤。

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

編輯頁(yè)面 模板e(cuò)idt.html

Editing {{.Title |html}}

   
{{printf "%s" .Body |html}}
 
 

查看頁(yè)面模板view.html

  1. {{.Title |html}}

     

  2. [edit]

     

  3. {{printf "%s" .Body |html}}
     

完整代碼: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) }

運(yùn)行測(cè)試:

$ 8g wiki.go

$ 8l wiki.8

$ ./8.out

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

效果圖:

Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序
Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序

上述就是小編為大家分享的Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享標(biāo)題:Go語(yǔ)言怎樣寫(xiě)Web應(yīng)用程序
文章起源:http://weahome.cn/article/pdhoph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部