mirror of https://github.com/jumpserver/jumpserver
parent
cd5d860fb4
commit
5e7a35bd9a
|
@ -79,6 +79,9 @@ function doRequestAuth() {
|
|||
requestApi({
|
||||
url: url,
|
||||
method: "GET",
|
||||
headers: {
|
||||
"X-JMS-LOGIN-TYPE": "W"
|
||||
},
|
||||
success: function (data) {
|
||||
if (!data.error && data.msg === 'ok') {
|
||||
window.onbeforeunload = function(){};
|
||||
|
@ -98,9 +101,6 @@ function doRequestAuth() {
|
|||
},
|
||||
error: function (text, data) {
|
||||
},
|
||||
beforeSend: function(request) {
|
||||
request.setRequestHeader("X-JMS-LOGIN-TYPE", "W");
|
||||
},
|
||||
flash_message: false, // 是否显示flash消息
|
||||
})
|
||||
}
|
||||
|
|
|
@ -270,13 +270,13 @@ function requestApi(props) {
|
|||
if (typeof(dataBody) === "object") {
|
||||
dataBody = JSON.stringify(dataBody)
|
||||
}
|
||||
var beforeSend = props.beforeSend || function (request) {}
|
||||
var headers = props.headers || {}
|
||||
|
||||
$.ajax({
|
||||
url: props.url,
|
||||
type: props.method || "PATCH",
|
||||
headers: headers,
|
||||
data: dataBody,
|
||||
beforeSend: beforeSend,
|
||||
contentType: props.content_type || "application/json; charset=utf-8",
|
||||
dataType: props.data_type || "json"
|
||||
}).done(function (data, textStatue, jqXHR) {
|
||||
|
|
Loading…
Reference in New Issue