golangWeb框架---github.com/gin-gonic/gin學習六(靜態檔案、模版、模版函式)
靜態檔案
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
router.Static("/assets", "./assets")
router.StaticFS("/more_static", http.Dir("assets"))
router.StaticFile("/favicon.ico", "./assets/a.png")
router.Run(":8080")
}
在我的專案下建立一個assets資料夾
直接上圖就行:
1、訪問more_static
2、訪問assets下的某個檔案
3、直接訪問assets下的某個檔案
下載服務端檔案
我們就下載我們上例中的圖片,路徑為
http://127.0.0.1:8080/favicon.ico
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
router.StaticFile("/favicon.ico", "./assets/a.png")
router.GET("/someDataFromReader", func(c *gin.Context) {
response, err := http.Get("http://127.0.0.1:8080/favicon.ico")
if err != nil || response.StatusCode != http.StatusOK {
c.Status(http.StatusServiceUnavailable)
return
}
reader := response.Body
contentLength := response.ContentLength
contentType := response.Header.Get("Content-Type")
extraHeaders := map[string]string{
"Content-Disposition": `attachment; filename="gopher.png"`,
}
c.DataFromReader(http.StatusOK, contentLength, contentType, reader, extraHeaders)
})
router.Run(":8080")
}
瀏覽器輸入http://127.0.0.1:8080/someDataFromReader 就實現了圖片的下載
模版語言(1)
雖然現在業務開發,需要資料分離,但是web框架都有自己的模版語言,比如Django的Jinja2,Jinja2是基於python的模板引擎,功能比較類似於於PHP的smarty,J2ee的Freemarker和velocity。
今天就來了解下gin裡面的是如何使用的,這些東西都很簡單,直接上程式碼,看效果即可
func main() {
router := gin.Default()
router.LoadHTMLGlob("template/*")
router.GET("/index", func(c *gin.Context) {
c.HTML(http.StatusOK, "view.html", gin.H{
"title": "Main website",
})
})
router.Run(":8080")
}
看一下view.html程式碼
<html>
<h1>
{{ .title }}
</h1>
</html>
直接上效果圖:
模版語言(2)
上一個例子的模版頁面,是放到template的目錄下,如果在template下有多級目錄呢?比如下面這個截圖
然後看後端程式碼如下:
func main() {
router := gin.Default()
router.LoadHTMLGlob("template/**/*")
router.GET("/posts/index", func(c *gin.Context) {
c.HTML(http.StatusOK, "index1.tmpl", gin.H{
"title": "Posts",
})
})
router.GET("/users/index", func(c *gin.Context) {
c.HTML(http.StatusOK, "users/index2.tmpl", gin.H{
"title": "Users",
})
})
router.Run(":8080")
}
index1.tmpl
<html><h1>
{{ .title }}
</h1>
<p>Using posts/index1.tmpl</p>
</html>
index2.tmpl
{{ define "users/index2.tmpl" }}
<html><h1>
{{ .title }}
</h1>
<p>Using users/index2.tmpl</p>
</html>
{{ end }}
效果圖如下:
自定義模版函式
我們還可以自己定製模版函式
You may use custom delims
r := gin.Default()
r.Delims("{[{", "}]}")
r.LoadHTMLGlob("/path/to/templates"))
設定router.Delims
需要的格式,然後SetFuncMap
設定需要的值函式,然後通過c.HTML
渲染資料即可
程式碼比較簡單,我都是直接上程式碼,看效果即可
package main
import (
"fmt"
"github.com/gin-gonic/gin"
"html/template"
"net/http"
"time"
)
func formatAsDate(t time.Time) string {
year, month, day := t.Date()
return fmt.Sprintf("%d/%02d/%02d", year, month, day)
}
func main() {
router := gin.Default()
router.Delims("{[{", "}]}")
router.SetFuncMap(template.FuncMap{
"formatAsDate": formatAsDate,
})
router.LoadHTMLFiles("template/a.html")
router.GET("/raw", func(c *gin.Context) {
c.HTML(http.StatusOK, "a.html", map[string]interface{}{
"now": time.Date(2017, 07, 01, 0, 0, 0, 0, time.UTC),
})
})
router.Run(":8080")
}
模版程式碼a.html
<body>
Date: {[{.now | formatAsDate}]}
</body>
最後看下效果圖:
相關文章
- 函式模版和類模版函式
- 尤拉函式性質和模版函式
- 招標檔案模版及要素
- GoWeb框架Gin學習總結proto檔案GoWeb框架
- 搭建flutter框架模版常用Flutter框架
- Go模版檔案修改標示符Go
- XCode 建立自定義檔案模版XCode
- go的gin框架使用(六):檔案上傳Go框架
- CI 框架整合 Smarty 模版引擎框架
- C#靜態建構函式及靜態變數學習C#函式變數
- 模版
- gin框架函式語法框架函式
- 函式學習六函式
- pycharm設定python標頭檔案模版PyCharmPython
- 理解模版
- KMP模版KMP
- Laravel Blade 動態模版 & View::firstLaravelView
- 【45】運用成員函式模版接受所有相容型別函式型別
- nodejs express框架一個工程中同時使用ejs模版和jade模版NodeJSExpress框架
- 關於Play框架的靜態檔案框架
- 來玩Play框架07 靜態檔案框架
- 使用AppCompat專案模版APP
- 模版方法模式模式
- GoWeb框架Gin學習總結GoWeb框架
- go學習筆記——gin框架Go筆記框架
- 【模版】線段樹
- SPFA && dijkstra 模版
- 【43】學習處理模版化基類內的名稱
- C++靜態函式C++函式
- 【46】需要型別轉換時請為模版定義非成員函式型別函式
- Gin學習筆記01 框架使用筆記框架
- python學習筆記(六)——函式Python筆記函式
- Sanic 靜態檔案
- HTML郵件模版分享HTML
- 模版方法設計模式設計模式
- 小程式 模版訊息
- 前端快速開發模版前端
- ACM演算法模版ACM演算法