我正在使用这个 Web 框架进行 Go:https ://github.com/gofiber/fiber
我想运行他们给出的名为“hello world”的基本示例
我复制了代码并将其放在一个名为main.go
// ⚡️ Fiber is an Express inspired web framework written in Go with ☕️
// Github Repository: https://github.com/gofiber/fiber
// API Documentation: https://docs.gofiber.io
package main
import (
"log"
"github.com/gofiber/fiber"
)
func main() {
// Fiber instance
app := fiber.New()
// Routes
app.Get("/", hello)
// Start server
log.Fatal(app.Listen(3000))
}
// Handler
func hello(c *fiber.Ctx) {
c.Send("Hello, World !")
}
在我运行脚本之前,我还确保使用go get -u github.com/gofiber/fiber
.
然后运行go run main.go
文件运行但它不在我的本地主机上运行并告诉我它正在运行HOST[::]
我怎样才能让它运行localhost
而不是HOST[::]
. 我试图查看它是否在我的本地主机上,但它根本不存在。