You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using request.formData() and obtaining a FormData object, both the "entries" and "keys" methods are not found.
miniflare --version // 2.0.0-next.3
const form = await request.formData()
if ("entries" in form) {
console.log("entries", ...form.entries())
}
if ("keys" in form) {
console.log("keys", ...form.keys())
}
Hey! 👋 This looks like an error in undici, the package Miniflare uses to provide fetch, Response, FormData, etc. I'd suggest you open an issue there. 🙂
When using request.formData() and obtaining a FormData object, both the "entries" and "keys" methods are not found.
miniflare --version // 2.0.0-next.3
miniflare --debug
wrangler dev
The text was updated successfully, but these errors were encountered: