我正在关注官方Todo App with React tutorial。如果我完全按照步骤进行操作,则在步骤2.5之后,会收到错误消息:
=> Exited with code: 1
Unable to resolve some modules:
"@babel/runtime/helpers/interopRequireDefault" in
/.../todos/imports/ui/App.js (web.browser.legacy)
"@babel/runtime/helpers/inheritsLoose" in
/.../todos/imports/ui/App.js (web.browser.legacy)
If you notice problems related to these missing modules, consider running:
meteor npm install --save @babel/runtime
似乎Meteor的当前版本和React npm软件包不会自动安装Babel,因此JSX代码不会转换为JS。
如果您使用以下命令,这会使想遵循本教程的其他人的生活更加轻松>
meteor npm install --save react react-dom
meteor npm install --save @babel/runtime
...一起给。