golang gin 技巧

來源:互聯網
上載者:User

一、在html模板中直接輸出html代碼

gin文檔挺坑爹的一點是居然沒有使用html模板時在go代碼中直接插入html代碼的說明,搞得不熟悉go Template的話還得尋找半天解決方案。

解決方案:

使用template.HTML

例子:
index.tmpl檔案:

{{.data1}} {{.data2}}

go代碼:

c.HTML(http.StatusOK, "index.tmpl", gin.H{        "data1": "<p> test </p>"        "data2":  template.HTML("<p> test </p>"),    })

返回的html為:

<p> test </p>test

二、遍曆PostForm的所有param

沒找到遍曆post提交的form裡所有param的API,所以參照源碼寫了這個方法 :

func updatePostPage(c *gin.Context) {    req := c.Request    req.ParseForm()    req.ParseMultipartForm(32 << 20)//參數相當於32M,官方源碼中本來定義了個變數,但是是private類型不能直接調用,所以乾脆直接寫個值。    h := gin.H{}    for k, v := range req.PostForm {        if len(v) > 0 {            println(k, v[0])            h[k] = v[0]        }    }    c.JSON(http.StatusOK, h)}

三、輸出漂亮json

  1. 使用c.IndentedJSON替代c.JSON
  2. 如果是使用golang內建的JSON庫,使用:
ret, err := json.MarshalIndent(h, "", "\t")

替代json.Marshal可以得到漂亮json。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.