我正在制作一个 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 是一种好习惯吗?
2 回答
蝴蝶刀刀
TA贡献1801条经验 获得超8个赞
f, err:= filepath.Glob(filepath.Join(LayoutDir, TemplateExt))
应该做的伎俩
或者
LayoutDir string = filepath.Join("views", "layouts") + string(filepath.Separator)
或者
LayoutDir string = filepath.Join("views", "layouts") + string(os.PathSeparator)
POPMUISE
TA贡献1765条经验 获得超5个赞
我没有足够的代表发表评论 - 也许模组会将我的“答案”移到评论中。需要注意的一件事是此代码将views/layouts\
在 Windows 机器上生成......我只是使用/
而不是 filepath.Separator 或 os.PathSeparator。
- 2 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消