ExperimentalWarning: The Fetch API is an experimental feature. This feature could change at any time (Use node --trace-warnings ... to show where the warning was created)怎么解决
时间: 2023-06-27 09:02:59 浏览: 321
这个警告是因为在使用 Fetch API 时,该 API 目前还处于实验性阶段,可能会有变化。如果你想要禁止这个警告,可以在启动 Node.js 时添加 `--no-deprecation` 参数。
但是,建议不要禁止这个警告,因为这对于避免使用已弃用的 API 非常重要。你可以根据警告信息进行调整,以避免使用这个 API。如果使用 Fetch API 的话,可以使用 Node.js 内置的 `node-fetch` 模块来代替。
阅读全文