Vue遇到的问题
Posted srp750115867
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue遇到的问题相关的知识,希望对你有一定的参考价值。
1.下载文件时window.location.href=url只能使用get请求,get请求时如果参数过长,浏览器会报400错误,这时需要使用post请求。可以用模拟提交表单的方式实现下载文件:
exportOk(){
let demoUrl = gl.serverURL + "/common/tool/export";
let temp_form = document.createElement("form");
// 设置form属性
temp_form.action = demoUrl;
temp_form.target = "_self";
temp_form.method = "post";
temp_form.style.display = "none";
//使用input参数会截断,应该是input对字符有长度限制
let opt = document.createElement("textarea");
opt.name = "sql";
opt.value = sql;
temp_form .appendChild(opt);
document.body.appendChild(temp_form);
// 提交表单
temp_form .submit();
}
以上是关于Vue遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章