Gin 使用示例(三十三):静态资源
示例代码:
func main() {
router := gin.Default()
router.Static("/assets", "./assets")
router.StaticFS("/more_static", http.Dir("my_file_system"))
router.StaticFile("/favicon.ico", "./resources/favicon.ico")
// Listen and serve on 0.0.0.0:8080
router.Run(":8080")
}
这样一来,就可以访问 assets
目录及 more_static
文件系统下的资源文件,还有 favicon.ico
文件。
No Comments