英文:
What is `fpath` in this Go/Revel controller?
问题
fpath
在import
声明中是指导入的包的路径。在给定的链接中,fpath
是github.com/robfig/revel/modules/static/app/controllers
,它指定了要导入的包的位置。
英文:
https://github.com/robfig/revel/blob/master/modules/static/app/controllers/static.go
What is fpath
in the import
declaration?
答案1
得分: 3
看起来这是一种给包起别名的方式。非常酷。
http://golang.org/ref/spec#Import_declarations
英文:
Looks like it's a way to alias the package. Very cool.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论