我有4个输入和按钮,它从中获取所有数据并通过axios.post()请求发送到我的PostreSQL数据库。不清楚.then()是如何工作的。所以,这是我的按钮代码,它只调用this.addNewPainting函数:
<button onClick={ this.addNewPainting }>Submit</button>
这是我的addNewPainting函数:
addNewPainting() {
axios.post(`http://localhost:333/api/add`, {
title: this.state.titleInput,
year: this.state.yearInput,
size: this.state.yearInput,
location: this.state.locationInput
})
.then(function(response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
}
在这个项目之前,我曾经使用this.setState将response.data放到数组中,但是现在我有了数据库而且我只是卡住了。
这是我的控制器功能:
add_painting: (req, res, next) => {
const db = req.app.get('db');
const { title, year, size, location } = req.body;
console.log(title, year, size, location);
db.add_painting([ title, year, size, location ])
.then( () => res.status(200).send() )
.then( () => res.status(500).send() );
}
终点:
app.post('/api/add', paintings_controller.add_painting);
答案 0 :(得分:2)
供将来阅读(因为您提出要求):我不是使用promises
的专家,但其工作方式与AJAX
请求类似。
当您向服务器(GET
,POST
,PUT
等)发出请求时,您正在等待此处的响应(数据集合,消息,成功/不成功POST
/ PUT
/ DELETE
等等。根据回复,您可以对预期事件进行编码(error
,success
,complete
等。
在这种情况下,您使用axios,这是一种执行AJAX
请求的新方法。 error
/ success
/ complete
/ ...事件的等效方式是then()
函数。使用此方法,您可以执行创建新任务的操作,或者只是打印服务器的响应消息(在您的情况下)。
来自MDN:
then()
方法返回Promise。它最多需要两个参数: Promise的成功和失败案例的回调函数。
假设我们在AJAX中有这段代码:
$.ajax(
{
url : yourURL,
type : 'POST',
data : yourData,
datatype : 'json',
success : function(data) {
yourSuccessFunction(data);
},
error : function(jqXHR, textStatus, errorThrown) {
yourErrorFunction();
}
});
使用axios
,您可以使用以下代码进行编码:
axios.post('/user', {
YourData: yourData
}).then(() => { this.yourSuccessFunction() })
}).catch(() => { this.yourErrorFunction() });
答案 1 :(得分:1)
我刚发现错误。我在axios.post()中向PORT 333发出请求,但服务器正在使用3333端口。