const html = `<!DOCTYPE html><body><h1>Hello World</h1><p>This markup was generated by TencentCloud Edge Functions.</p></body>`;async function handleRequest(request) {return new Response(html, {headers: {'content-type': 'text/html; charset=UTF-8','x-edgefunctions-test': 'Welcome to use Edge Functions.',},});}addEventListener('fetch', event => {event.respondWith(handleRequest(event.request));});
本页内容是否解决了您的问题?