Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support http.Request SetPathValue method #35

Open
cxjava opened this issue Oct 30, 2024 · 0 comments
Open

Support http.Request SetPathValue method #35

cxjava opened this issue Oct 30, 2024 · 0 comments

Comments

@cxjava
Copy link

cxjava commented Oct 30, 2024

I am attempting to utilize the Chi router in a WASM module, but I encounter an error during the build process with TinyGo.

I guess it is because of TinyGo net package don't have the SetPathValue method.

Would you be able to assist in diagnosing the problem?

path_value.go in chi

tinygo build -o ./build/app0.wasm -target wasm 
# github.com/go-chi/chi/v5
../../../../go/pkg/mod/github.com/go-chi/chi/[email protected]/path_value.go:18:5: r.SetPathValue undefined (type *http.Request has no field or method SetPathValue)

go version : go version go1.23.1 darwin/amd64
tinygo version: tinygo version 0.33.0 darwin/amd64 (using go version go1.23.1 and LLVM version 18.1.2)

package main

import (
	"net/http"

	"github.com/go-chi/chi/v5"
)

func main() {
	r := chi.NewRouter()
	r.Get("/", func(w http.ResponseWriter, r *http.Request) {
		w.Write([]byte("welcome"))
	})
	http.ListenAndServe(":3000", r)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant