英文:
How can I return array in golang to use it in my index.html?
问题
我有这段代码:
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
for _, f := range files {
fmt.Println(f.Name())
}
如何返回一个包含所有f.Name
的数组,以便在index.html中使用它们?
英文:
I have this code
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
for _, f:=range files {
fmt.Println(f.Name())
}
How can return an array contain all f.Name
to use them in index.html ?
答案1
得分: 2
创建一个切片,并在循环中使用append
来添加文件名。
var fileNames []string
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
for _, f := range files {
fileNames = append(fileNames, f.Name())
}
// 现在fileNames包含了所有的文件名,你可以将它们传递给你的模板。
同时请注意,你不应该忽略在以下代码行中可能返回的错误:
```go
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
英文:
Create a slice and use append
to add the file names in your loop.
var fileNames []string
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
for _, f := range files {
fileNames = append(fileNames, f.Name())
}
// Now fileNames contains all of the file names for you to pass to your template.
Also note that you should not ignore the possible error returned on the line
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论