Metro 遇到错误:无法读取未定义的属性(读取“transformfile”)。错误
2022-05-11
15156
不确定为什么我会遇到此问题。我正在按照 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);
})();
1个回答
此问题通常是因为用户使用的是较新的节点版本。您可以使用 节点版本管理器 (nvm) 降级节点来解决此问题。
zpodavay
2022-05-13