/**
* 解决参数过长导致URL无法正确请求
* @param URL
* @param PARAMS
* @returns {___anonymous2288_2291}
*/
function post(URL, PARAMS) {
var temp = document.createElement("form");
temp.action = URL;
temp.method = "post";
temp.style.display = "none";
for (var x in PARAMS) {
var opt = document.createElement("textarea");
opt.name = x;
opt.value = PARAMS[x];
// alert(opt.name)
temp.appendChild(opt);
}
document.body.appendChild(temp);
temp.submit();
return temp;
}
调用以上方法就行,第二个参数格式为json格式