英文:
Implicit interface call function
问题
在使用Golang的net/http
包来服务器静态文件时,我找到了实现FileSystem
接口的Dir
类型。
一些示例展示了如何使用以下代码来服务器静态文件:
http.Handle("/", http.FileServer(http.Dir("/tmp")))
那么http.Dir("/tmp")
到底是什么?它看起来像是一个用于构造FileSystem
的构造函数。
英文:
Looking for some examples to server static files with net/http
package in Golang, I found the type Dir
which implements FileSystem
interface.
Some examples show You can server static files with the following:
http.Handle("/", http.FileServer(http.Dir("/tmp")))
What exactly is http.Dir("/tmp")
? It looks like a constructor function for FileSystem
.
答案1
得分: 1
http.Dir("/tmp")
实际上是一种类型转换,将字符串"/tmp"转换为http.Dir
类型。查看文档,你会发现http.Dir
实际上是一个字符串类型。因此,这种类型转换是有效的。
此外,http.Dir
类型还实现了func Open(name string) (File, error)
函数。因此,它可以在任何需要FileSystem
接口的地方使用。
你还可以查看net/http
包中的func ServeFile(w ResponseWriter, r *Request, name string)
函数。
英文:
http.Dir("/tmp")
is actually a type conversion where you convert the string /tmp
into the http.Dir
type. Looking at the docs, you will see that http.Dir
is actually a string type. Hence, this type conversion works.
In addition, the http.Dir
type also implements the func Open(name string) (File, error)
function. Hence, it can be used anywhere where a FileSystem
interface is used.
You can also check out the func ServeFile(w ResponseWriter, r *Request, name string)
function in the net/http
package.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论