是否可以将Angular嵌入到Golang应用程序中?

我想知道是否有可能将Angular gui(索引.html,javascripts,css,images等)嵌入到可执行的go应用程序中。

例如,Spring Boot(Java)可以通过将编译的Angular文件复制到src/main/resources/static文件夹中来做到这一点,然后这些文件在根路径上提供(前提是具有spring-boot-starter-web依赖项)。

Go 1.16(2021 年 2 月)//go:embed 的新功能是否能够使用整个文件夹执行此操作?


慕斯709654
浏览 93回答 1
1回答

30秒到达战场

使用Go 1.16,您现在可以使用源代码中的指令嵌入文件和目录。//go:embed下面是 的软件包文档。embed这是Carl Johnson的一篇博客文章,Go博客在软件包发布时引用了该博客。embed您的用例听起来好像您可以从嵌入目录和使用http中受益。文件服务器。在链接的博客文章中有一个示例。我也把它贴在下面。此示例演示如何嵌入通过 HTTP 调用和服务的目录:staticpackage mainimport (    "embed"    "io/fs"    "log"    "net/http"    "os")func main() {    useOS := len(os.Args) > 1 && os.Args[1] == "live"    http.Handle("/", http.FileServer(getFileSystem(useOS)))    http.ListenAndServe(":8888", nil)}//go:embed staticvar embededFiles embed.FSfunc getFileSystem(useOS bool) http.FileSystem {    if useOS {        log.Print("using live mode")        return http.FS(os.DirFS("static"))    }    log.Print("using embed mode")    fsys, err := fs.Sub(embededFiles, "static")    if err != nil {        panic(err)    }    return http.FS(fsys)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go