在 React Native 应用程序中添加节点模块isomorphic-fetch
(版本:^2.2.1)后,我收到Can't find variable: self
.
在这里,我附上了一个截图。
该错误是从位于 node_modules > isomorphic-fetch > 的文件中抛出的fetch-npm-browserify.js
。
以下是该文件的代码。
// the whatwg-fetch polyfill installs the fetch() function
// on the global object (window or self)
//
// Return that as the export for use in Webpack, Browserify etc.
require('whatwg-fetch');
module.exports = self.fetch.bind(self);