package main import ( "fmt" "log" "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "index.html") }) http.HandleFunc("/chat", func(w http.ResponseWriter, r *http.Request) { message := r.PostFormValue("message") fmt.Println("Received message:", message) }) log.Fatal(http.ListenAndServe(":8080", nil)) }
时间: 2023-07-19 21:57:33 浏览: 132
这是一个使用 Go 语言编写的简单的 Web 应用程序,可以提供静态文件服务和简单的聊天功能。其主要功能如下:
1. 使用 http 包创建 HTTP 服务器。
2. 通过 http.HandleFunc() 函数注册两个路由处理程序,一个处理根路径("/"),一个处理聊天路径("/chat")。
3. 根路径的处理程序使用 http.ServeFile() 函数提供静态文件服务,返回 index.html 文件。
4. 聊天路径的处理程序从 POST 请求中提取消息,然后将其打印到控制台。
5. 最后,使用 http.ListenAndServe() 函数启动服务器,监听本地的 8080 端口。
需要注意的是,这个简单的聊天功能并没有保存消息,也没有进行任何安全性验证,仅仅是对 POST 请求中的消息进行了简单的打印。在实际应用中,需要根据具体需求对代码进行相应的修改和扩展。
相关问题
package main import ( "fmt" "log" "net/http" ) func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, world!") } func main() { mux := http.NewServeMux() mux.HandleFunc("/", handler) go func() { err := http.ListenAndServe(":8080", mux) if err != nil { log.Fatal(err) } }() go func() { err := http.ListenAndServe(":8081", mux) if err != nil { log.Fatal(err) } }() select {} }怎么用一个http请求结束这段代码
你可以使用 context 包来实现这个目的。具体实现可以参考以下代码:
```
package main
import (
"context"
"fmt"
"log"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, world!")
}
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", handler)
srv := &http.Server{Addr: ":8080", Handler: mux}
go func() {
if err := srv.ListenAndServe(); err != http.ErrServerClosed {
log.Fatalf("ListenAndServe(): %v", err)
}
}()
ctx := context.Background()
// 等待一个 http 请求
<-ctx.Done()
// 关闭服务器
if err := srv.Shutdown(context.Background()); err != nil {
log.Fatalf("Shutdown(): %v", err)
}
}
```
这个程序会启动一个 HTTP 服务器,监听 8080 端口。当程序收到一个 http 请求时,会关闭服务器并退出程序。
package main import ( "fmt" "html/template" "log" "net/http" "strings" ) func login(w http.ResponseWriter, r *http.Request) { fmt.Println("method:", r.Method) if r.Method == "GET" { t, err := template.ParseFiles("H:\\Goproject\\src\\web\\login.html") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } if err := t.Execute(w, nil); err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) } } else { _ = r.ParseForm() fmt.Println("username:", r.Form["username"]) fmt.Println("password:", r.Form["password"]) if pwd := r.Form.Get("password"); pwd == "123456" { fmt.Fprintf(w, "欢迎登陆,Hello %s!", r.Form.Get("username")) } else { fmt.Fprintf(w, "密码错误!") } } } func sayHello(w http.ResponseWriter, r *http.Request) { _ = r.ParseForm() //3 解析参数,默认不解析 fmt.Println(r.Form) //4 输出到服务器端的打印信息 fmt.Println("Path:", r.URL.Path) for k, v := range r.Form { fmt.Println("key:", k) fmt.Println("value", strings.Join(v, "")) } fmt.Fprintf(w, "Hello aoho") //5 写入到w的是输出到客户端的内容 } func main() { http.HandleFunc("/", login) http.HandleFunc("/sayHello", sayHello) //1 设置访问的路由 err := http.ListenAndServe(":8080", nil) //2 设置监听的端口 if err != nil { log.Fatal("ListenSever:", err) } } 修改为绝对路径可以运行,但是如何修改为相对路径
要将路径修改为相对路径,您需要使用`http.Dir`函数将文件夹路径转换为`http.FileServer`类型。这样可以指定要提供给用户的静态文件所在的文件夹。以下是对代码的修改:
```go
package main
import (
"fmt"
"html/template"
"log"
"net/http"
"strings"
)
func login(w http.ResponseWriter, r *http.Request) {
fmt.Println("method:", r.Method)
if r.Method == "GET" {
t, err := template.ParseFiles("login.html")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if err := t.Execute(w, nil); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
} else {
_ = r.ParseForm()
fmt.Println("username:", r.Form["username"])
fmt.Println("password:", r.Form["password"])
if pwd := r.Form.Get("password"); pwd == "123456" {
fmt.Fprintf(w, "欢迎登陆,Hello %s!", r.Form.Get("username"))
} else {
fmt.Fprintf(w, "密码错误!")
}
}
}
func sayHello(w http.ResponseWriter, r *http.Request) {
_ = r.ParseForm() //3 解析参数,默认不解析
fmt.Println(r.Form) //4 输出到服务器端的打印信息
fmt.Println("Path:", r.URL.Path)
for k, v := range r.Form {
fmt.Println("key:", k)
fmt.Println("value", strings.Join(v, ""))
}
fmt.Fprintf(w, "Hello aoho") //5 写入到w的是输出到客户端的内容
}
func main() {
http.HandleFunc("/", login)
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
http.HandleFunc("/sayHello", sayHello) //1 设置访问的路由
err := http.ListenAndServe(":8080", nil) //2 设置监听的端口
if err != nil {
log.Fatal("ListenSever:", err)
}
}
```
这里假设您的静态资源文件夹名为`static`,并且在同一级目录下。使用`http.Handle`和`http.StripPrefix`函数来处理静态文件路由,并指定静态文件夹的相对路径。修改后,您应该能够使用相对路径来访问静态文件。
阅读全文