2017-08-26 166 views
-1

當執行模板golang錯誤提供靜態文件

panic: open templates/*.html: The system cannot find the path specified. 
時我無法弄清楚去郎此錯誤

另一個問題是,我的公用文件夾不能從CSS提供服務,我不知道爲什麼。

代碼:

package main 

import (
    "net/http" 
    "github.com/gorilla/mux" 
    "html/template" 
    "log" 
) 

var tpl *template.Template 

func init() { 
    tpl = template.Must(template.ParseGlob("templates/*.html")) 
} 

func main() { 
    r := mux.NewRouter() 
    r.HandleFunc("/",home) 
    http.Handle("/public/", http.StripPrefix("/public/", 
    http.FileServer(http.Dir("/pub")))) 
    http.ListenAndServe(":8080", r) 
} 

func home(writer http.ResponseWriter, request *http.Request) { 
    err := tpl.ExecuteTemplate(writer, "index.html", nil) 
    if err != nil { 
     log.Println(err) 
     http.Error(writer, "Internal server error", http.StatusInternalServerError) 
    } 
} 

我的文件夾是這樣的:

bin 
pkg 
pub 
    css 
    home.css 
    js 
src 
    github.com 
     gorila/mux 
templates 
     index.html

我GOROOT指向含有binpkgsrc

文件夾project當我做templates文件夾外部src它工作正常,但我認爲這是不正確的ev什麼東西一定在src對不對?

的index.html

<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <title>test</title> 
    <link href="../public/css/home.css" type="text/css" rel="stylesheet" /> 
</head> 
<body> 
<h1>welcome! hi</h1> 
</body> 
</html> 

在這裏,我不能服務於CSS

更新::

的第一個問題就解決了模板文件夾中。

但我仍然解決不了第二個問題

+0

模板文件夾只需要靠近您在構建到二進制文件時所製作的二進制文件。源文件只需要src文件夾。因爲模板是在運行時加載的*而不是編譯時它不需要在src文件夾中。 – gabeio

+0

所以你的意思是,當我去生產我將使用bin文件夾而不是src文件夾?所以我很抱歉問,但生產中使用的src是什麼?我的意思是如果有人使用我的代碼,他將如何使用我的代碼?從包? –

+0

所以你的意思是我從'src'出來文件夾並將其放在'project'文件夾下,然後將'parseGlob'從'templates/*。html'改爲'src/templates/*。html'? –

回答

2

我個人覺得標準http庫非常好,簡單的此類任務。但是,如果你堅持大猩猩mux這裏是我在你的代碼中發現的問題:

func main() { 
    ... 
    http.Handle("/public/", http.StripPrefix("/public/", http.FileServer(http.Dir("/pub")))) 
    http.ListenAndServe(":8080", r) 
} 

一方面您使用http.Handle爲靜態文件,但是,從另一方面你給rhttp.ListenAndServe

爲了解決這個問題只是改變這一行到:

r.PathPrefix("/public/").Handler(
     http.StripPrefix("/public/", 
      http.FileServer(http.Dir("/pub/")))) 

如果可以的話,我想用flag設置不同的路徑模板目錄和公共目錄中,因此會很容易建議部署和運行您的服務器。

換句話說,而不是硬編碼的路徑,這些路徑,你可以運行:

./myserver -templates=/loca/templates -public=/home/root/public 

要做到這一點只需添加以下內容:

import "flag" 
.... 
func main() { 
    var tpl *template.Template 
    var templatesPath, publicPath string 
    flag.StringVar(&templatesPath, "templates", "./templates", "Path to templates") 
    flag.StringVar(&publicPath, "public", "./public", "Path to public") 

    flag.Parse() 
    tpl = template.Must(template.ParseGlob(templatesPath+"/*.html")) 
    r.HandleFunc("/", handlerHomeTemplates(tpl)) 
    r.PathPrefix("/public/").Handler(http.StripPrefix("/public/", http.FileServer(http.Dir(publicPath)))) 
    ... 
} 

func handlerHomeTemplates(tpl *template.Template) http.HandlerFunc { 
    return http.HandlerFunc(func((writer http.ResponseWriter, request *http.Request) { 
     err := tpl.ExecuteTemplate(writer, "index.html", nil) 
     if err != nil { 
      ... 
     } 
    }) 
} 

即使認爲init功能是一個很好的我認爲這是一個很好的習慣,除非需要它才能避免它。這就是爲什麼我在main函數中完成所有初始化並使用handlerHomeTemplates返回使用templatesPath的新http.HandleFunc