我尝试在我的项目中使用react-bootstrap-table2来创建一个简单的引导表,但是得到了错误:
编译失败:未找到模块:无法解析"/用户/xxx/文档/xxx/源代码/路由/主页"中的../node_modules/bootstrap/dist/css/bootstrap.min.css"。
我确实安装了所有必要的包,并验证了bootstrap.min.css存在于它应该存在的地方。
我的代码如下所示:
import React from 'react';
import '../node_modules/bootstrap/dist/css/bootstrap.min.css';
import BootstrapTable from 'react-bootstrap-table-next';
class Home extends React.Component {
state = {
products: [
{
id: 1,
name: 'TV',
'price': 1000
},
{
id: 2,
name: 'Mobile',
'price': 500
},
{
id: 3,
name: 'Book',
'price': 20
},
],
columns: [{
dataField: 'id',
text: 'Product ID'
},
{
dataField: 'name',
text: 'Product Name'
}, {
dataField: 'price',
text: 'Product Price',
sort: true
}]
}
render() {
return (
<div className="container" style={{ marginTop: 50 }}>
<BootstrapTable
striped
hover
keyField='id'
data={ this.state.products }
columns={ this.state.columns } />
</div>
);
}
}
export default Home;
我的package.json文件如下所示:
{
"name": "codist.org",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.0.0",
"material-ui": "^1.0.0-beta.25",
"material-ui-icons": "^1.0.0-beta.17",
"react": "^16.2.0",
"react-bootstrap-table-next": "^1.1.3",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.5",
"reactstrap": "^6.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:8080"
}
对于如何解决该错误有什么建议吗?
2条答案
按热度按时间q43xntqr1#
试试这个:
如果没有指定路径,Node/webpack将搜索
node_modules
文件夹中的导入。我不知道出了什么问题,但这是从node_modules
文件夹导入模块的正确方法。sdnqo3pr2#
如果使用VS代码,请在angular.json的样式中使用“节点_模块/ Bootstrap /分发/css/ Bootstrap . min.css