How to fix - Module not found: Can#39;t resolve #39;@babel/runtime/helpers/objectWithoutPropertiesLoose#39;(如何修复-找不到模块:无法解析#39;@babel/runtime/helpers/objectWithoutPropertiesLoose#39;)
问题描述
我正在处理Reaction的一个项目,在实现此程序包后https://www.npmjs.com/package/react-bootstrap-typeahead出现以下错误。
Failed to compile
./node_modules/react-popper/lib/cjs/Popper.js
Module not found: Can't resolve '@babel/runtime/helpers/objectWithoutPropertiesLoose' in 'E:
eactjsdeveans-react-version
ode_modules
eact-popperlibcjs'
This error occurred during the build time and cannot be dismissed.
我找到了许多解决方案,我也尝试了https://github.com/jquense/yup/issues/216,但仍然遇到相同的错误。
但当我删除TypeAhead组件时,它工作正常。
import React , { Component } from 'react'
import {Typeahead} from 'react-bootstrap-typeahead';
import 'react-bootstrap-typeahead/css/Typeahead.css';
class States extends Component {
state = {
multiple: false,
options: [
{id: 1, label: 'Pakistan'},
{id: 2, label: 'Indonesia'},
{id: 3, label: 'Turkey'},
{id: 4, label: 'Brazil'},
]
};
render () {
const {multiple} = this.state;
return (
<div>
<Typeahead
labelKey="label"
multiple={multiple}
options={this.state.options}
placeholder="Choose a state..."
/>
</div>
)
}
}
export default States
推荐答案
我找到了解决方案
NPM安装--save-exact@babel/time@7.0.0-beta.55
然后删除Package-json.lock文件和NODE_MODULES文件夹,然后使用NPM安装重新安装
适合我。
这篇关于如何修复-找不到模块:无法解析';@babel/runtime/helpers/objectWithoutPropertiesLoose';的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何修复-找不到模块:无法解析';@babel/runtime/helpers/objectWithoutPropertiesLoose';
基础教程推荐
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在for循环中使用setTimeout 2022-01-01