利用EdgeOne边缘函数生成 HTML 页面
( 更新:07-25 加入收藏)
返回 HTML 页面
使用边缘函数生成 HTML 页面,并在浏览器端访问预览该 HTML 页面。
示例代码:
使用边缘函数生成 HTML 页面,并在浏览器端访问预览该 HTML 页面。
示例代码:
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));
});