我想发布从本地文件到服务器的登录信息。 这是我的代码:
var UrlDetails = 'http://xxx.xxx.x.xxx:xxxx';
function createCORSRequest(method, url, asynch) {
// Create the XHR object.
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
// XHR for Chrome/Firefox/Opera/Safari.
xhr.open(method, url, true);
//if (method == 'POST') {
// xhr.setRequestHeader('Content-Type', 'application/json');
//}
} else if (typeof XDomainRequest != "undefined") {
// XDomainRequest for IE.
xhr = new XDomainRequest();
xhr.open(method, url, asynch);
} else {
// CORS not supported.
xhr = null;
}
return xhr;
}
function postDoLogin(e, callback) {
var url = UrlDetails + '/api/login?f=json';
var xhr = createCORSRequest('POST', url, true);
if (xhr) {
xhr.onreadystatechange = function () {
try {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
callback(JSON.parse(xhr.responseText));
} else {
xhr.status === 403 ? modalShow() : errorServer(xhr.status);
}
}
}
catch (e) {
alert('Caught Exception: ' + e.description);
}
};
xhr.send(JSON.stringify(e));
}
}
在我的服务器中(我正在使用Service API),我得到的数据是:
`RequestMessage = "<Binary>eyJpZCI6IjEiLCJwYXNzd29yZCI6IjEifQ==</Binary>";`
如何解析RequestMessage到json读取?
非常感谢
答案 0 :(得分:0)
您正在使用的API看起来像是返回base64编码的字符串。如果API没有提供返回JSON而不是base64编码字符串的功能,那么您可以使用atob()在JavaScript中对其进行解码。
所以在你的代码而不是
callback(JSON.parse(xhr.responseText));
使用
var decoded = atob(xhr.responseText);
var json = JSON.parse(decoded);
callback(json);