我使用此代码上传 base64
public static post(api:number, params:object = {},callback:{(success:boolean, json: any): void;})
{
var xhr = new XMLHttpRequest();
xhr.open("POST", this.baseUrl+this.serverAPI, true);
xhr.setRequestHeader('content-type', 'text/html');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4)
{
if(xhr.getResponseHeader('content-type')==='text/html')
{
let response = JSON.parse(xhr.responseText);
if(response.code === -1)
{
callback(false, response);
}
else
{
callback(true, response);
}
}
else
{
const result = {code: -90001};
console.log(false, result);
}
}
}
params["cmd"] = api;
const strData = JSON.stringify(params);
cc.log("DATA:", strData);
xhr.send(strData);
}
我确定它在服务器上添加了“Access-Control-Allow-Origin”
但是当我 prase too large base64 string 时,它会出错
像这样
但同样的图片,当我压缩它时
(4.3MB 到 627KB)
很好,可以上传到服务器
谁能告诉我如何解决它?