uniapp 不能引入 node-fetch 么?npm安装后,引入 import nodeFetch from "node-fetch" 会报错,无法执行。经查,是node-fetch获取不到global object。
代码如下:
var getGlobal = function () {
// the only reliable means to get the global object is
// `Function('return this')()`
// However, this causes CSP violations in Chrome apps.
if (typeof self !== 'undefined') { return self; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
throw new Error('unable to locate global object');
}
var global = getGlobal();
求助,要如何调整此代码?
3 个回复
伊呀程序 (作者)
这个社区,什么时候也变成单机了呢?
凡心所向 - 仅用于开发测试 !
老哥解决了吗?我踩了整个坑
1***@qq.com - 一个喜欢听萨克斯的男人
这个包是nodejs的包吧,算是后端的范畴,uniapp是前端,环境不一样是跑不了的
a***@qq.com
经测试,h5 可用,但打包或真机运行时报错
2022-03-22 17:53