我在视图上有3个表单,在提交时,在mysql数据库中添加新条目。我想在添加条目时发送一条提示“你已经成功添加了X”,但没有从页面导航。
// Form to be Submitted
<form method="post" action="route/action/">
<input type="text" name="name">
</form>
// Route
exports.action = function (req, res) {
client.query();
// What kind of response to send?
}
如何发送提醒?我应该发送什么样的回复?
谢谢!
答案 0 :(得分:5)
您需要做的是向快速服务器发送ajax请求并评估响应并相应地提醒用户。这个客户端部分与其他编程语言一样。
例如,。在jquery客户端部分你可以做到这一点
$.ajax({
url: 'route/action/',
type: "POST",
data: 'your form data',
success: function(response){
alert('evaluate response and show alert');
}
});
在您的epxress应用中,您可以拥有类似的内容
app.post('route/action', function(req, res){
//process request here and do your db queries
//then send response. may be json response
res.json({success: true});
});