7

我在一个视图上有 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?
}

如何发送警报?我应该发送什么样的回复?

谢谢!

4

1 回答 1

8

您需要做的是向您的快速服务器发出 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});
});
于 2013-08-26T08:08:44.923 回答