我正在寻找一个示例,说明这两行代码在正常运行的 A/B 测试工作者中的样子。来自https://developers.cloudflare.com/workers/examples/ab-testing
const TEST_RESPONSE = new Response("Test group") // e.g. await fetch("/test/sompath", request)
const CONTROL_RESPONSE = new Response("Control group") // e.g. await fetch("/control/sompath", request)
我使用了示例,替换了我正在使用的路径,但得到了一个语法错误,提示 await 只能在 async 中使用。所以我把函数改成了异步函数handleRequest(request),得到了500错误。
这两行代码应该是什么样子的?