我试过this answer中的代码(做了一些修改),但它告诉我fetch
不是函数。
const fetch = import("node-fetch");
fetch(process.env.WEBHOOK, {
'method': 'POST',
'body': { 'username': json.username, "content": json.message}
}).then(res=> console.log(res)).catch(err => console.error(err));
1条答案
按热度按时间nqwrtyyt1#
import()
是一个返回值为Promise
的函数,因此需要await import('node-fetch')
。你可能想