浏览器不会在ajax响应上重定向时重定向窗口。使用javascript重定向浏览器。
例如,在服务器中将新站点作为内容发送。
res.contentType('application/json');var data = JSON.stringify('http://site.example.com/')res.header('Content-Length', data.length);res.end(data);
在客户中
var req = jQuery.post( "http://www.mysite.com:3000"+"/dologin", {"username" : username, "password" : password}, 'json').error(function(){ alert("an error occurred"); }).success(function(data) { window.location = data; });
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)