我有一个 React 组件(Albums
),render()
方法根据其状态返回两个可能的组件之一。这些组件之一(AlbumsTable
被两个道具参数classes
和albums
调用。第二个props参数是ajax使用 Axios 在更新getData
状态(导致其重新呈现)的方法(Albums
)中使用的数组。
由于Ajax的异步特性,Albums
渲染两次,第一次使用this.albums = []
,而第二次(由getData()
状态更新引起)则使用this.albums
等于Ajax的结果。
问题是当AlbumsTable.constructor()
等于Albums
时,我可以追踪到this.albums
仅被调用一次(第一次[]
呈现)。因此,Albums
第二次渲染时,当this.albums
等于ajax的结果时,此内容不会作为道具发送到AlbumsTable
,导致ajax的结果永远不会显示。
这是我组件的代码:
import React, { Component } from 'react';
import Cookies from 'js-cookie';
import axios from 'axios';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import Table from '@material-ui/core/Table';
import TableBody from '@material-ui/core/TableBody';
import TableCell from '@material-ui/core/TableCell';
import TableHead from '@material-ui/core/TableHead';
import TableRow from '@material-ui/core/TableRow';
import Paper from '@material-ui/core/Paper';
const styles = theme => ({
root: {
width: '100%',
marginTop: theme.spacing.unit * 3,
overflowX: 'auto',
},
table: {
minWidth: 700,
},
});
class AlbumsTable extends Component {
constructor(props) {
super(props);
this.state = {
classes: props.classes,
}
if(props.albums === undefined){
this.albums = [];
} else {
this.albums = props.albums;
}
}
render() {
return (
<Paper className={this.state.classes.root}>
<Table className={this.state.classes.table}>
<TableHead>
<TableRow>
<TableCell>ID</TableCell>
<TableCell align="right">Name</TableCell>
<TableCell align="right">Photos</TableCell>
</TableRow>
</TableHead>
<TableBody>
{this.albums.map(album => {
return (
<TableRow key={album.id}>
<TableCell component="th" scope="row">
{album.name}
</TableCell>
<TableCell align="right">{"photos"}</TableCell>
</TableRow>
);
})}
</TableBody>
</Table>
</Paper>
);
}
}
class AlbumDetail extends Component {
render() {
return(<p>Album Detail Comming Soon...</p>);
}
}
class Albums extends Component {
constructor(props) {
super(props);
this.state = {
classes: props.classes,
mode: 'table',
albums: [],
};
this.albums = [];
this.getData();
}
getData() {
const axios = require('axios');
var userToken = Cookies.get('token');
axios.defaults.xsrfHeaderName = "X-CSRFTOKEN";
axios.defaults.xsrfCookieName = "csrftoken";
axios.get('http://127.0.0.1:8000/es/api/albums/',
{
headers: {
Authorization: userToken,
}
}
)
.then(function (response) {
console.log(response);
this.albums = response.data.results;
this.setState({albums: this.state.albums + 1});
}.bind(this))
.catch(function (error) {
console.log(error);
return(null);
})
}
setData(albums) {
this.setState({albums: albums});
}
render() {
if(this.state.mode === 'table'){
return (<AlbumsTable classes={this.state.classes} albums={this.albums} />);
} else {
return (<AlbumDetail />);
}
}
}
Albums.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(Albums);
我想我缺少或误解了有关组件渲染的某些东西。
答案 0 :(得分:3)
如果您认为问题更好,则可以意识到不需要将albums
数组作为变量保存到类组件中,最好检查一下albums
属性是否为定义了其他参数,则应该返回一个空数组,这样组件将按预期工作。
render(){
const albums = this.props.albums || [];
return (
<Paper className={this.state.classes.root}>
<Table className={this.state.classes.table}>
<TableHead>
<TableRow>
<TableCell>ID</TableCell>
<TableCell align="right">Name</TableCell>
<TableCell align="right">Photos</TableCell>
</TableRow>
</TableHead>
<TableBody>
{albums.map(album => {
return (
<TableRow key={album.id}>
<TableCell component="th" scope="row">
{album.name}
</TableCell>
<TableCell align="right">{"photos"}</TableCell>
</TableRow>
);
})}
</TableBody>
</Table>
</Paper>
);
}
答案 1 :(得分:1)
重新渲染组件不会导致再次创建它。它将进行更新,因此constructor
不会触发两次。这是标准行为。您应该使用static getDerivedStateFromProps
方法来更新状态以响应道具更改。您可以在这里找到更多信息:https://reactjs.org/docs/react-component.html#the-component-lifecycle