我正在尝试使用 Primereact DataView,问题是我的数据是使用操作从后端加载的。以下是我的代码,稍后将解释我的目标。
export const getFinishedProjects = () => dispatch => {
axios.get(finishedProjectsURL)
.then(res => {
dispatch({
type: GET_FINISHED_PROJECTS,
payload: res.data
});
}).catch(err => console.log(err))
}
componentDidMount() {
this.props.getFinishedProjects();
}
<div className="dataview-demo">
<div className="card">
<DataView
value={this.props.finishedprojects}
layout={this.state.layout}
header={header}
lazy
itemTemplate={this.itemTemplate}
paginator
paginatorPosition={'both'}
rows={this.rows}
totalRecords={this.state.totalRecords}
first={this.state.first}
/>
</div>
</div>
const mapStateToProps = state =>({
finishedprojects : state.finishedprojects.finishedprojects
})
export default connect(mapStateToProps, {getFinishedProjects} ) (FinishedProjects);
现在这是文档中的问题,我假设这两个函数用于加载数据
componentDidMount() {
setTimeout(() => {
this.productService.getProducts().then(data => {
this.datasource = data;
this.setState({
totalRecords: data.length,
products: this.datasource.slice(0, this.rows),
loading: false
});
});
}, 1000);
}
onPage(event) {
this.setState({
loading: true
});
//imitate delay of a backend call
setTimeout(() => {
const startIndex = event.first;
const endIndex = event.first + this.rows;
this.setState({
first: startIndex,
products: this.datasource.slice(startIndex, endIndex),
loading: false
});
}, 1000);
}
使用我的方法,我似乎得到了这个错误:错误:DataViewItem(...):没有从渲染返回。这通常意味着缺少 return 语句。或者,不渲染任何内容,返回 null。
我的假设是,这可能与我如何从后端加载数据有关。如果是这种情况,可能有人会帮助我如何模仿那些文档,如函数并在 DataView 中呈现数据。提前致谢