嗨,我尝试制作了MERN应用
但是有件事,当我审核或删除页面时没有刷新,该怎么办?我创建一个索引,列出所有条目
// index.component.js
import React, { Component } from 'react';
import axios from 'axios';
import TableRow from './TableRow';
export default class Index extends Component {
constructor(props) {
super(props);
this.state = {business: []};
}
componentDidMount(){
axios.get('http://localhost:4000/business')
.then(response => {
this.setState({ business: response.data });
})
.catch(function (error) {
console.log(error);
})
}
tabRow(){
return this.state.business.map(function(object, i){
return <TableRow obj={object} key={i} />;
});
}
render() {
return (
<div>
<h3 align="center">Liste des billets</h3>
<table className="table table-striped" style={{ marginTop: 20 }}>
<thead>
<tr>
<th>Nom Prénom</th>
<th>Poste</th>
<th>Téléphone</th>
<th colSpan="2">Action</th>
</tr>
</thead>
<tbody>
{ this.tabRow() }
</tbody>
</table>
</div>
);
}
}
这是我的桌子,上面有选项
// TableRow.js
import React, { Component } from 'react';
import { Link } from 'react-router-dom';
import axios from 'axios';
class TableRow extends Component {
constructor(props) {
super(props);
this.delete = this.delete.bind(this);
}
delete() {
axios.get('http://localhost:4000/business/delete/'+this.props.obj._id)
.then(console.log('Deleted'))
.catch(err => console.log(err))
}
render() {
return (
<tr>
<td>
{this.props.obj.nomPrenom}
</td>
<td>
{this.props.obj.posteEntreprise}
</td>
<td>
{this.props.obj.numeroTel}
</td>
<td>
<Link to={"/edit/"+this.props.obj._id} className="btn btn-primary">Editer</Link>
</td>
<td>
<button onClick={this.delete} className="btn btn-danger">Supprimer</button>
</td>
</tr>
);
}
}
export default TableRow;
这是我在这里尝试过的内容,我的删除和更新工作正常,但是只有在刷新页面后才能确认修改。
答案 0 :(得分:0)
您必须在删除/编辑请求的回调中更新数据。
当前,您只记录删除成功。
答案 1 :(得分:0)
您似乎只get
组件的componentDidMount
的{{1}} API中的业务数据。
相反,您应该有一个从API获取数据并在TableRow的Index
方法的componentDidMount
和.then
中进行调用的方法。
例如:
delete
在TableRow中:
componentDidMount(){
this.getBusinessData();
}
getBusinessData() {
axios.get('http://localhost:4000/business')
.then(response => {
this.setState({ business: response.data });
})
.catch(function (error) {
console.log(error);
})
}
tabRow(){
return this.state.business.map(function(object, i){
return <TableRow obj={object} getBusinessData={this.getBusinessData} key={i} />;
});
}
请注意,您还必须将方法作为道具传递给TableRow,以便它可以访问它。
答案 2 :(得分:0)
在删除功能中,您应该更新状态
delete() {
axios.get('http://localhost:4000/business/delete/'+this.props.obj._id)
.then(()=>{
let list=this.state.business.filter((item)=>return (item.id===this.props.obj._id))
this.setState({business:list})}
.catch(err => console.log(err))
}
idk如何在您的情况下删除,因为我不知道列表,但应该类似