

Hono) and I usually interact with it by calling it with https://worker_b.me.workers.dev/${param}env.B), how do I call it and pass param?env.B.fetch(https://worker_b.me.workers.dev/${param})https://worker_b.me.workers.dev/${param}env.Bparamenv.B.fetch(https://worker_b.me.workers.dev/${param}){
"key1": {<order info},
"key2": {<order info},
}[
{"key": 1, <order info>},
{"key": 2, <order info>}
]const result = await env.B.fetch(param)
const json = await result.json()Cannot read properties of undefined (reading 'fetch')async function createCacheUrl(path: string, safe_formdata: FormData): Promise<URL> {
const byter = await getFormHash(safe_formdata);
const cacheUrl = new URL('https://ai.moda.invalid');
cacheUrl.pathname = path + '/' + byter;
return cacheUrl;
}