🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 使用http 简易版本 ``` package main import "net/http" func main() { fs := http.FileServer(http.Dir("image_test/")) http.Handle("/static/", http.StripPrefix("/static", fs)) http.ListenAndServe(":8888", nil) } ```