我正在尝试使用环境变量获取 webhooks url。 这是我的代码
const url = process.env.WEBHOOK_URL;
const response = await fetch(
`${url}` ,
{
body: JSON.stringify({
name,
email,
message,
}),
headers: {
'Content-Type': 'application/json'
},
method: 'POST'
}
);
但错误显示“仅支持绝对 URL” 请帮忙!谢谢