Metro 遇到错误:无法读取未定义的属性(读取“transformfile”)。错误

Tat*_*ste 8 node.js node-modules reactjs react-native

不确定为什么我会遇到这个问题。我正在遵循本机反应教程,并且遇到此错误:

TransformFile(filePath, transformOptions) {
    var _this3 = this;

    return _asyncToGenerator(function*() {
      // We need to be sure that the DependencyGraph has been initialized.
      // TODO: Remove this ugly hack!
      yield _this3._depGraphPromise;
      return _this3._transformer.transformFile(filePath, transformOptions);
    })();

Run Code Online (Sandbox Code Playgroud)

小智 4

发生此问题通常是因为用户使用的是较新的节点版本。您可以通过使用节点版本管理器 (nvm)降级节点来解决此问题。