我可以在第一个控制台中看到我的回复,但是始终为undefined
。
fetch("/api/v1/legacy/tenant-shop", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(dataToSubmit)
})
.then(response =>
console.log("THIS RESPONSE IS WORKING, IT CONSOLE 201", response.status)
)
.then(response => {
if (response && response.status === 201) {
console.log("BUT IT NEVER GOES THERE");
this.props.router.push("/congratilations");
} else {
console.log("THE RESULT OF THIS CONSOLE IS NULL", response && response);
}
});
答案 0 :(得分:5)
您不会从前一个git-review
返回任何内容,因此下一个.then()
不会得到任何有用的值。
尝试
.then()