码迷,mamicode.com
首页 > 其他好文 > 详细

设置静态文件路径

时间:2020-06-18 01:11:00      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:icon   静态   more   http   pre   favicon   route   set   outer   

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")
}

  

设置静态文件路径

标签:icon   静态   more   http   pre   favicon   route   set   outer   

原文地址:https://www.cnblogs.com/yzg-14/p/13144637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!