插入成功后,我想重定向到url:
$(document).ready(function() {
$("#btn").on("click", function() {
$.post({
url:"/track/admin/affecterMenusProfil",
data:$("#frm").serialize()
});
});
});
router.post("/affecterMenusProfil", function(req, res) {
var profil = req.body.profil, menus = req.body.menus;
connexion.query("delete from "+db.getPrefixNomTables()+"profil_menu where profil_id ="+profil, function (errDel, rowsDel) {
if (errDel)
throw errDel;
async.eachOf(menus, function(menu, position, cb) {
connexion.query("insert into "+db.getPrefixNomTables()+"profil_menu(menu_id, profil_id) values("+menu+", "+profil+")", function (err, rows) {
if (err) throw err;
cb();
});
}, function() {
res.redirect('/track/');
});
});
});
但是在运行时没有重定向:插入页面仍然显示!那我的代码有什么问题呢?
答案 0 :(得分:1)
如果您来自ajax的请求,服务器将不会重定向。
为了重定向,成功时必须在客户端实现重定向逻辑 回调。
$(document).ready(function() {
$("#btn").on("click", function() {
$.post({
url:"/track/admin/affecterMenusProfil",
data:$("#frm").serialize(),
success: function(response) {
window.location.href = response.url;
}
});
});
});
router.post("/affecterMenusProfil", function(req, res) {
var profil = req.body.profil, menus = req.body.menus;
connexion.query("delete from "+db.getPrefixNomTables()+"profil_menu where profil_id ="+profil, function (errDel, rowsDel) {
if (errDel)
throw errDel;
async.eachOf(menus, function(menu, position, cb) {
connexion.query("insert into "+db.getPrefixNomTables()+"profil_menu(menu_id, profil_id) values("+menu+", "+profil+")", function (err, rows) {
if (err) throw err;
cb();
});
}, function() {
res.send({url: '/track/'});
});
});
});
您必须如上所述从服务器发送URL并从客户端重定向该URL。 希望对您有帮助。