如何從 Netlify 函數返回 HTML
不使用
1 2 3 4
| return { statusCode: 200, body: '測試', }
|
而是使用
1 2 3 4 5 6 7
| return { statusCode: 200, headers: { 'Content-type': 'text/html; charset=UTF-8', }, body: '<body style="background-color: black;"><h2 style="color: white; padding-top:200px; text-align: center; font-family: system-ui">測試</h2></body>', }
|
tags: [“Netlify”, “函數”, “HTML”, “傳回值”, “開發者”]