我是网络汇编的新手
我在目录Hello_WebAssembly
下向服务器index.html
wasm_exec.js
main.wasm
写入web.go
然后我go run web.go
终端
然后我去本地主机: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
调用,因为您希望从当前目录(项目(提供资源。