登录
首页 >  Golang >  Go问答

有关revel框架中相对路径的使用

来源:Golang技术栈

时间:2023-03-03 18:42:29 196浏览 收藏

大家好,我们又见面了啊~本文《有关revel框架中相对路径的使用》的内容中将会涉及到golang等等。如果你正在学习Golang相关知识,欢迎关注我,以后会给大家带来更多Golang相关文章,希望我们能一起进步!下面就开始本文的正式内容~

问题内容

如何将文件真正导入 revel 框架中的 revel 基本文件夹。目前我执行以下操作来获取一些配置值。

file, err := ioutil.ReadFile("conf/config.conf")
...

这导致我的服务器只有在我开始陶醉时站在应用程序目录中才能工作

revel run myapp

有没有办法访问基本文件夹?

正确答案

包中有导出的全局变量revel,您可以使用其中任何一个:

var (
    // App details
    AppName    string // e.g. "sample"
    BasePath   string // e.g. "/Users/revel/gocode/src/corp/sample"
    AppPath    string // e.g. "/Users/revel/gocode/src/corp/sample/app"
    ViewsPath  string // e.g. "/Users/revel/gocode/src/corp/sample/app/views"
    ImportPath string // e.g. "corp/sample"
    SourcePath string // e.g. "/Users/revel/gocode/src"

    // Revel installation details
    RevelPath string // e.g. "/Users/revel/gocode/src/revel"

    // Where to look for templates and configuration.
    // Ordered by priority.  (Earlier paths take precedence over later paths.)
    CodePaths     []string
    ConfPaths     []string
    TemplatePaths []string
)

如果它对您来说是空的,那很可能是因为您从基本文件夹启动了您的应用程序。

请注意,这些路径是由Init(mode, importPath, srcPath string)函数设置的。它的文档指出:

srcPath - the path to the source directory, containing Revel and the

app. If not specified (""), then a functioning Go installation is required.

另请查看:[如何从代码和测试中引用相关文件](https://stackoverflow.com/questions/31059023/how-to- reference-a-relative-file-from-code-and-tests)

好了,本文到此结束,带大家了解了《有关revel框架中相对路径的使用》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>