我在XMLHttpRequest POST之后很难渲染页面。
在我的客户端,我执行以下操作:
var http = new XMLHttpRequest();
var url = window.location.origin + "/mypath";
http.open("POST", url, true);
//Send the proper header information along with the request
http.setRequestHeader("Content-type", "application/json");
http.onreadystatechange = function () {
if (http.readyState == 4 && http.status == 200) {
console.log('you should be redirected or render a new page);
} else {
// Handle error
}
}
http.send(JSON.stringify(myParams));
和服务器端:
router.get("/info", (req: Request, res: Response) => {
res.render('info', {msg: req.query.msg});
})
router.post("/mypath", (req: Request, res: Response, next) => {
res.send(res.redirect(url.format({
pathname:"/info",
query: {msg:'my message'}
})));
})
使用上述代码不会重定向到信息页面。我做错了什么?
请注意,我不希望我的用户在其浏览器导航栏中看到查询消息,只是/info
。
答案 0 :(得分:2)
在执行ajaxes时,您无法从服务器端重定向页面,您可以做的是在条件处于您希望的状态时从客户端更改URL,您可以通过以下方式从客户端重定向命令。
let baseUrl = window.location.origin
window.location.replace(baseUrl + '/info');