1 回答
TA贡献1805条经验 获得超9个赞
我认为您可以简化事情,您可以在您的子组件上尝试以下代码吗?
class UsersTable extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<TableBody>
{data
.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage)
.map(n => {
return (
<TableRow key={n.id}>
<TableCell className={classes.fixedTd}>
<BorderColorIcon onClick={() => this.props.userId(n.userId)} className="action margin-r" />
</TableCell>
</TableRow>
);
})}
</TableBody>
);
}
}
export UsersTable;
添加回答
举报