ReactJs的发布时间>> [

问题描述 投票:0回答:3
我解释我今天的问题

在下面的代码中,我发布了对象

我的问题,是否可以发布发布时间?

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 = {方法:“ ...

javascript reactjs post axios fetch
3个回答
1
投票
body: JSON.stringify({...this.state, created: new Date().toISOString(), items:this.props.items})

1
投票
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 }

1
投票
如果您希望将时间与请求一起发送,您可以将其添加到请求的正文中,如下所示:
© www.soinside.com 2019 - 2024. All rights reserved.