|
本帖最后由 lxmjava 于 2019-11-21 09:04 编辑
$.ajax({
async: false,
type: 'POST',
dataType: 'json',
url: X5_LOGIN_URL,
data: {
username: username,
password: hex_md5(password),
loginDate: loginDate,
bsessionid: oldSessionID
},
error: function(error, status, text) {
alert('登录失败:' + text);
},
success: function(result){
if (result.flag) {
newSessionID = result.bsessionid;
window.location.href = 'http://localhost:8080'+result.url+"×tamp=" + new Date().valueOf();
} else {
alert('登录失败:' + result.message);
};
}
});
主要是这块window.location.href = 'http://localhost:8080'+result.url+"×tamp=" + new Date().valueOf();需要什么参数、版本是5.27经典门户、现在直接打回到登陆页面!
|
|