我已经尝试了许多教程,到目前为止,我可以显示项目并了解React的知识。
URL结构为
/works/2
查询字符串2存储在pageID
然后我触发ajax调用并过滤数据库以仅显示带有.find()
的数据
这是WorksPage.js
文件,它将列出公司工作组合项目。
import React, { Component } from 'react';
import axios from 'axios';
import './index.css';
class WorksPage extends Component {
constructor(props) {
super(props);
this.state = {itemList: []};
}
componentWillMount(){
const pageID = this.props.match.params.page;
axios.get('/api/works.json').then(function(response){
const result = response.data.find(i => i.id === pageID);
this.setState({ isLoaded: true, itemList: result });
}.bind(this));
}
componentDidMount() {
window.scrollTo(0, 0);
}
render(){
return(
<div className="workListing pageWrapper">
<section className="workListing-process">
<div className="smcontainer center txtc">
{this.state.itemList}
App Type: {this.state.itemList.sub}
App cars: {this.state.itemList.cars.map((car, i) =>
<div key={i}>
{car}
</div>
)}
</div>
</section>
</div>
)
}
}
export default WorksPage;
我的works.json
的JSON是
[{
"id": 0,
"img": "/images/slider.jpg",
"header": "GPS Module",
"sub": "iOS",
"link": "/works/0",
"cars":[ "Ford", "BMW", "Fiat" ]
}{
"id": 1,
"img": "/images/map-slider.jpg",
"header": "GPS Mapping Vectors",
"sub": "iOS",
"link": "/works/1",
"cars":[ ]
},{
"id": 2,
"img": "/images/slider.jpg",
"header": "GPS Module",
"sub": "Android",
"link": "/works/2",
"cars":[ "Ferrari", "BMW", "Land Rover" ]
}]
到目前为止,{this.state.itemList}
返回空白。赛车清单循环也无法正常工作。如果我在result
this.setState
的数据。
答案 0 :(得分:1)
首先,不要使用componentWillMount,它既是deprecated,也不是用来调用API的。请改用componentDidMount。
我认为问题是pageID
是字符串,id
是数字,因此没有任何匹配项。比较之前,请尝试将pageID
转换为数字。
const pageID = parseInt(this.props.match.params.page, 10);
答案 1 :(得分:0)
您在回调函数中使用'this'关键字,它表示回调本身而不是组件。 并且也使用componentDidmount,不再使用componenwillmount。 参见此处:componentWillMount
使用此:
componentDidMount(){
let that = this;
const pageID = this.props.match.params.page;
axios.get('/api/works.json').then(function(response){
const result = response.data.find(i => i.id === pageID);
that.setState({ isLoaded: true, itemList: result });
};
}