前端常见几种读物模板的方法

前端常见几种读物模板的方法,第1张

第一种
//读取模板数据
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;
},

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/944548.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存