标签: node.js deprecation-warning node-fetch
我的用法很基本:
import fetch from 'node-fetch'; const res = await fetch(url, GenerateRequestOptions(token));
和fetch调用会产生警告:
fetch
[DEP0066] DeprecationWarning: OutgoingMessage.prototype._headers is deprecated
由于我没有直接访问headers,所以我猜想修复应该在软件包中吗?
headers