加入路径时如何添加尾部斜线

我正在制作一个 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 是一种好习惯吗?


海绵宝宝撒
浏览 97回答 2
2回答

蝴蝶刀刀

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

我没有足够的代表发表评论 - 也许模组会将我的“答案”移到评论中。需要注意的一件事是此代码将views/layouts\在 Windows 机器上生成......我只是使用/而不是 filepath.Separator 或 os.PathSeparator。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go