gpt4 book ai didi

go - 找不到Web服务器404页面

转载 作者:行者123 更新时间:2023-12-01 22:27:14 31 4
gpt4 key购买 nike

我是Web组装的新手

我将web.go写入服务器index.html wasm_exec.js main.wasm目录Hello_WebAssembly

然后我在终端中go run web.go
然后我去localhost:8080它报告404 page not found
我正在按照https://github.com/golang/go/wiki/WebAssembly的说明进行操作

这是我的web.go代码

package main

import (
"log"
"net/http"
)

func main() {
fs := http.FileServer(http.Dir("Hello_WebAssembly"))
http.Handle("/", fs)

log.Println("Listening...")
http.ListenAndServe(":8080", nil)
}

我不知道为什么

希望有人可以帮助我

提前致谢

顺便说一下,我的操作系统是win10

最佳答案

我假设您的项目名为Hello_WebAssembly,并且您正在文件夹中运行go run命令。

如果是这种情况,那么您的http.Dir调用应该是http.Dir("."),因为您希望从当前目录(项目)中提供资源。

关于go - 找不到Web服务器404页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59232223/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com