我正在尝试在我的react应用程序中实现分页。这是我正在关注的网站React Pagination Component。但是在构建应用程序时出现以下错误。
./ node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js 模块构建失败:错误:ENOENT:没有此类文件或目录,请打开'/ Users / siddharthsinha / WebstormProjects / tweelyze-ui / node_modules / babel-preset-react-app / node_modules / @ babel / runtime / helpers / esm / assertThisInitialized。 js'
由于我是新手,所以我无法弄清楚实现的问题。这是我已实现分页的js文件。
import React from 'react';
import NavigationBar from './NavigationBar';
import SearchPageResultsStyle from "../assets/css/SearchResultsPage.css"
import JwPagination from 'jw-react-pagination';
import Homepage from "./Homepage";
import SearchBarComponent from "./SearchBarComponent"
import MuiThemeProvider from "material-ui/styles/MuiThemeProvider";
class SearchResultsPage extends React.Component{
constructor(props) {
super(props);
console.log("Printing in the results component")
console.log(this.props.location.state)
this.state = {
results: this.props.location.state.results,
keyword: this.props.location.state.keyword,
pageOfItems: []
};
this.onChangePage = this.onChangePage.bind(this);
}
onChangePage(pageOfItems) {
// update local state with new page of items
this.setState({pageOfItems});
}
render() {
return(
<div>
<NavigationBar/>
<h4 style={{textAlign:'center', color:'#1a0dab'}}>Showing search results for <span style={{fontWeight:'bold', fontStyle:'Italic'}}>'{this.state.data.keyword}'</span></h4>
<hr/>
<div className={'wrap'} style={SearchPageResultsStyle}>
<div className={'fleft'}>left column</div>
<div className={'fcenter'}>
<h3 style={{color:'#1a0dab'}}>Tweeter tweets text will be displayed here!!!</h3>
<a href={'https://google.com'}>Tweet urls will be displayed here</a>
<br/>
<div style={{display:'inline'}}>
<p><span style={{fontWeight:'bold', textColor:'#6a6a6a'}}>topic: </span>crime</p>
<p><span style={{fontWeight:'bold', textColor:'#6a6a6a'}}>city: </span>delhi</p>
<p><span style={{fontWeight:'bold', textColor:'#6a6a6a'}}>lang: </span>Hindi</p>
<p><span style={{fontWeight:'bold', textColor:'#6a6a6a'}}>Hashtags: </span></p>
<hr/>
<JwPagination items={this.state.results} onChangePage={this.onChangePage}/>
</div>
</div>
<div className={'fright'}>right column</div>
</div>
</div>
)
}
}
export default SearchResultsPage;
答案 0 :(得分:0)
您应该进入 index.js 文件,在此代码中的 import App from './App';
您应该将 ./App 更改为当前使用的文件路径。