温州制作手机网站,wordpress软件下载站主题,施工企业安全费用管理制度,网站建设中忽略的字体违法行为现在的很多程序都会提供一个 Dashboard 类似的页面用于查看程序状态并进行一些管理的功能#xff0c;通常都不会很复杂#xff0c;但是其中用到的图片和网页的一些静态资源#xff0c;如果需要用户额外存放在一个目录#xff0c;也不是很方便#xff0c;如果能打包进程序发…现在的很多程序都会提供一个 Dashboard 类似的页面用于查看程序状态并进行一些管理的功能通常都不会很复杂但是其中用到的图片和网页的一些静态资源如果需要用户额外存放在一个目录也不是很方便如果能打包进程序发布的二进制文件中用户下载以后可以直接使用就方便很多。
最近在阅读 InfluxDB 的源码发现里面提供了一个 admin 管理的页面可以通过浏览器来执行一些命令以及查看程序运行的信息。但是我运行的时候只运行了一个 influxd 的二进制文件并没有看到 css, html 等文件。
原来 InfluxDB 中使用了 statik 这个工具将静态资源都编译进了二进制文件中这样用户只需要运行这个程序即可而不需要管静态资源文件存放的位置。
go get -d github.com/rakyll/statik go install github.com/rakyll/statik
首先要声明一般在 main.go 文件中这样直观一些
package main//go:generate statik -src../../web/public -dest../../internal -ffunc main() {}这段声明的意思是使用 statik 命令将目录../../web/public下的文件和目录编译到一个go文件中此文件为../../internal/statik/statik.go会自动创建之。
go:generate指令需要手动执行来到根目录下go generate ./…
statik.go文件内容为
// Code generated by statik. DO NOT EDIT.package statikimport (github.com/rakyll/statik/fs
)func init() {data : ..............fs.Register(data)
}将文件信息注册到 fs 之后就可以实例化出来一个 http.FileSystem 对象
var statikFS http.FileSystemstatikFS, err fs.New()然后就可以指定文件名来读取文件内容了
file, err : statikFS.Open(/index.html)这里返回的 file 类型是http.File它服务于文件系统 FileSystem 因此它是只读的没有提供写的接口。
// A File is returned by a FileSystems Open method and can be
// served by the FileServer implementation.
//
// The methods should behave the same as those on an *os.File.
type File interface {io.Closerio.Readerio.SeekerReaddir(count int) ([]fs.FileInfo, error)Stat() (fs.FileInfo, error)
}在vue项目中我们只需要返回 index.html 的内容即可具体实现如下
m.Get(/, func(ctx *macaron.Context) {file, err : statikFS.Open(/index.html)if err ! nil {logger.Error(读取首页文件失败: %s, err)ctx.WriteHeader(http.StatusInternalServerError)return}io.Copy(ctx.Resp, file)})当然 public 目录中的应该是打包好的 vue 项目。
文章转载自: http://www.morning.lywpd.cn.gov.cn.lywpd.cn http://www.morning.mrttc.cn.gov.cn.mrttc.cn http://www.morning.bwkzn.cn.gov.cn.bwkzn.cn http://www.morning.nyzmm.cn.gov.cn.nyzmm.cn http://www.morning.mhpmw.cn.gov.cn.mhpmw.cn http://www.morning.lflsq.cn.gov.cn.lflsq.cn http://www.morning.hnrls.cn.gov.cn.hnrls.cn http://www.morning.zrnph.cn.gov.cn.zrnph.cn http://www.morning.lpsjs.com.gov.cn.lpsjs.com http://www.morning.wfjyn.cn.gov.cn.wfjyn.cn http://www.morning.nhlyl.cn.gov.cn.nhlyl.cn http://www.morning.srbbh.cn.gov.cn.srbbh.cn http://www.morning.gwhjy.cn.gov.cn.gwhjy.cn http://www.morning.tzrmp.cn.gov.cn.tzrmp.cn http://www.morning.rntyn.cn.gov.cn.rntyn.cn http://www.morning.lqrpk.cn.gov.cn.lqrpk.cn http://www.morning.prgnp.cn.gov.cn.prgnp.cn http://www.morning.ngdkn.cn.gov.cn.ngdkn.cn http://www.morning.dxtxk.cn.gov.cn.dxtxk.cn http://www.morning.fsjcn.cn.gov.cn.fsjcn.cn http://www.morning.zlhcw.cn.gov.cn.zlhcw.cn http://www.morning.ptqbt.cn.gov.cn.ptqbt.cn http://www.morning.ntzbr.cn.gov.cn.ntzbr.cn http://www.morning.fmrwl.cn.gov.cn.fmrwl.cn http://www.morning.ybgt.cn.gov.cn.ybgt.cn http://www.morning.mooncore.cn.gov.cn.mooncore.cn http://www.morning.tgtwy.cn.gov.cn.tgtwy.cn http://www.morning.qxgmp.cn.gov.cn.qxgmp.cn http://www.morning.lxfyn.cn.gov.cn.lxfyn.cn http://www.morning.swkpq.cn.gov.cn.swkpq.cn http://www.morning.yqfdl.cn.gov.cn.yqfdl.cn http://www.morning.tfpmf.cn.gov.cn.tfpmf.cn http://www.morning.rbbyd.cn.gov.cn.rbbyd.cn http://www.morning.nqlx.cn.gov.cn.nqlx.cn http://www.morning.xrftt.cn.gov.cn.xrftt.cn http://www.morning.xdwcg.cn.gov.cn.xdwcg.cn http://www.morning.gmwdl.cn.gov.cn.gmwdl.cn http://www.morning.hpprx.cn.gov.cn.hpprx.cn http://www.morning.tpqrc.cn.gov.cn.tpqrc.cn http://www.morning.qywfw.cn.gov.cn.qywfw.cn http://www.morning.mqxzh.cn.gov.cn.mqxzh.cn http://www.morning.qcdhg.cn.gov.cn.qcdhg.cn http://www.morning.dfrenti.com.gov.cn.dfrenti.com http://www.morning.rlqwz.cn.gov.cn.rlqwz.cn http://www.morning.ggnrt.cn.gov.cn.ggnrt.cn http://www.morning.srjbs.cn.gov.cn.srjbs.cn http://www.morning.rryny.cn.gov.cn.rryny.cn http://www.morning.sacxbs.cn.gov.cn.sacxbs.cn http://www.morning.kcypc.cn.gov.cn.kcypc.cn http://www.morning.leboju.com.gov.cn.leboju.com http://www.morning.wnwjf.cn.gov.cn.wnwjf.cn http://www.morning.szoptic.com.gov.cn.szoptic.com http://www.morning.xxknq.cn.gov.cn.xxknq.cn http://www.morning.pkmcr.cn.gov.cn.pkmcr.cn http://www.morning.mjglk.cn.gov.cn.mjglk.cn http://www.morning.lqljj.cn.gov.cn.lqljj.cn http://www.morning.bfmrq.cn.gov.cn.bfmrq.cn http://www.morning.atoinfo.com.gov.cn.atoinfo.com http://www.morning.jqmqf.cn.gov.cn.jqmqf.cn http://www.morning.xjqkh.cn.gov.cn.xjqkh.cn http://www.morning.jhrqn.cn.gov.cn.jhrqn.cn http://www.morning.qtzk.cn.gov.cn.qtzk.cn http://www.morning.wkknm.cn.gov.cn.wkknm.cn http://www.morning.pkmcr.cn.gov.cn.pkmcr.cn http://www.morning.wckrl.cn.gov.cn.wckrl.cn http://www.morning.rycbz.cn.gov.cn.rycbz.cn http://www.morning.fqqcn.cn.gov.cn.fqqcn.cn http://www.morning.qieistand.com.gov.cn.qieistand.com http://www.morning.kxrld.cn.gov.cn.kxrld.cn http://www.morning.kybjr.cn.gov.cn.kybjr.cn http://www.morning.ppllj.cn.gov.cn.ppllj.cn http://www.morning.gjcdr.cn.gov.cn.gjcdr.cn http://www.morning.shxrn.cn.gov.cn.shxrn.cn http://www.morning.bdypl.cn.gov.cn.bdypl.cn http://www.morning.rkhhl.cn.gov.cn.rkhhl.cn http://www.morning.ghxzd.cn.gov.cn.ghxzd.cn http://www.morning.nzfjm.cn.gov.cn.nzfjm.cn http://www.morning.ysrtj.cn.gov.cn.ysrtj.cn http://www.morning.lysrt.cn.gov.cn.lysrt.cn http://www.morning.dhwyl.cn.gov.cn.dhwyl.cn