在下面的代码中,我发布了对象
我的问题,是否可以发布发布时间?
postbackend = () =>{
const config = {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({...this.state, items:this.props.items}),
};
const url = entrypoint + "/alluserpls";
fetch(url, config)
.then(res => res.json())
.then(res => {
if (res.error) {
alert(res.error);
} else {
alert(`ajouté avec l'ID ${res}!`);
}
}).catch(e => {
console.error(e);
}).finally(()=>this.setState({ redirect: true }));
}
我只是想恢复发布该帖子的时间您是否有解决方法的想法? Neff
我在下面的代码中解释了当天的问题,我发布了我的问题的对象,是否可以发布发布时间? postbackend =()=> {const config = {方法:“ ...
body: JSON.stringify({...this.state, created: new Date().toISOString(), items:this.props.items})
postbackend = () => {
startDate = new Date(); // add this date
const config = {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
...this.state,
items: this.props.items
}),
};
const url = entrypoint + "/alluserpls";
fetch(url, config)
.then(res => res.json())
.then(res => {
if (res.error) {
alert(res.error);
} else {
alert(`ajouté avec l'ID ${res}!`);
}
}).catch(e => {
console.error(e);
}).finally(() => this.setState({
redirect: true
}));
return startDate; // return it
}