我正在尝试将wiki编码为go编程语言。我已将数据放在/data文件夹中,并将.html文件放在该/tmpl文件夹中。我已经将main功能编码如下func main() { walk := func(path string, info os.FileInfo, err error) error { if err == nil && !info.IsDir() && filepath.Ext(path) == ".html" { http.HandleFunc("/view/", makeHandler(viewHandler)) http.HandleFunc("/edit/", makeHandler(editHandler)) http.HandleFunc("/save/", makeHandler(saveHandler)) } return err } root := TEMPLATE_PATH + "edit.html" err := filepath.Walk(root, walk) if err != nil { return }}我越来越panic edit.html not found。有人可以指导我吗?
1 回答
- 1 回答
- 0 关注
- 228 浏览
添加回答
举报
0/150
提交
取消