第一种
//读取模板数据
readFile(filePath) {
// 创建一个新的xhr对象
let xhr = null;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
// eslint-disable-next-line
xhr = new ActiveXObject(“Microsoft.XMLHTTP”);
}
const okStatus = document.location.protocol === “file” ? 0 : 200;
xhr.open(“GET”, filePath, false);
xhr.overrideMimeType(“text/html;charset=utf-8”);
xhr.send(null);
return xhr.status === okStatus ? xhr.responseText : null;
},
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)