doter1995 2015-02-28 15:42
浏览 100
已采纳

如何使用Golang Gorilla Mux查找CSS文件

I'm using Go with Gorilla Mux.

This is my webserver.go file

package main

import (
  "log"
  "net/http"

  "github.com/gorilla/mux"
)

func HomeHandler(rw http.ResponseWriter, r *http.Request) {
  http.ServeFile(rw, r, "index.html")
}

func main() {
  r := mux.NewRouter()
  r.HandleFunc("/", HomeHandler)

  http.Handle("/", r)

  log.Println("Server running on :8080")
  err := http.ListenAndServe(":8080", r)
  if err != nil {
     log.Printf("Error: %s
", err.Error())
  }
}

In the same folder where the webserver.go file is located is the index.html file.

/ - here is the index.html

/css - All the CSS files

/images - All the images, resource files

I manage to load the index.html file using the above code but it doesn't seem to load the CSS files and images.

inside the index.html file I have.

<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/animate-custom.css" />

So it should find the css files or do I have to make sure that "Go" can find the css and image folder? How?

  • 写回答

1条回答 默认 最新

  • dpbfb7119 2015-02-28 16:01
    关注

    You can use http.FileServer for serving all the static files independently of gorilla/mux.

    package main
    
    import (
        "log"
        "net/http"
    
        "github.com/gorilla/mux"
    )
    
    func HomeHandler(rw http.ResponseWriter, r *http.Request) {
        http.ServeFile(rw, r, "index.html")
    }
    
    func main() {
        r := mux.NewRouter()
    
        cssHandler := http.FileServer(http.Dir("./css/"))
        imagesHandler := http.FileServer(http.Dir("./images/"))
    
        http.Handle("/css/", http.StripPrefix("/css/", cssHandler))
        http.Handle("/images/", http.StripPrefix("/images/", imagesHandler))
        r.HandleFunc("/", HomeHandler)
        http.Handle("/", r)
    
        log.Println("Server running on :8080")
        log.Fatal(http.ListenAndServe(":8080", nil))
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀