发布请求后,数据进入数据库内部,但不会重新呈现组件。我需要手动按F5按钮,新数据才会显示。似乎then
没有执行。
class AddForm extends Component {
constructor(props) {
super(props)
this.state = {
id: null,
title: "",
price: 0,
pages: 0,
};
}
postData() {
const { title, price, pages } = this.state
const curTitle = title
const curPrice = price
const curPages = pages
fetch("api/books", {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
Title: title,
Price: price,
NumberOfPages: pages
})
}).then(res => res.json()).then(() => this.setState({ title: curTitle, price: curPrice, pages: curPages }))
}
}
编辑: 当我执行以下操作时:
.then(response => response.json()).then(res => console.log(res))
我得到Uncaught (in promise) SyntaxError: Unexpected end of JSON input
答案 0 :(得分:1)
从您的问题看来,您似乎能够在提交时进行状态更新,唯一的问题是关于显示数据,为此,我建议您放置另一个用于显示数据的组件。过去对我有用。请让我知道它是否对您有用。
答案 1 :(得分:0)
res => res.json():这将给出JSON响应,将此JSON响应值绑定到setState中的状态。
希望您的回复如下所示,
response.data = {
curTitle: 'some title',
curPrice: 'some price',
curPages: 'some pages'
}
第二次更改您的提取调用,然后执行以下功能,
constructor(props) {
super(props)
this.state = {
id: null,
title: "",
price: 0,
pages: 0,
};
this.postData = this.postData.bind(this); // Add this line, cannot read property error will be gone.
}
fetch("api/books", {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
Title: title,
Price: price,
NumberOfPages: pages
})
}).then(res => res.json()).then((responseJson) => {
console.log(responseJson); // what is the output of this?
this.setState({
title: responseJson.data.curTitle,
price: responseJson.data.curPrice,
pages: responseJson.data.curPages
})
})