我正在制作一个 webapp,我正在尝试views/layouts/*.html
使用两个变量来编写,但是 filepath.Join 只给出views/layouts
而不是views/layouts/
var ( LayoutDir string = filepath.Join("views","layouts") TemplateExt string = "*.html")
然后打电话
f, err:= filepath.Glob(LayoutDir + TemplateExt)
所以 f 包含views/layouts*.html
而不是views/layouts/*.html
我应该如何解决这个问题,在这种情况下使用 filepath.Join 是一种好习惯吗?
蝴蝶刀刀
POPMUISE
相关分类