一个网址的组成:
例如:https://note.youdao.com/download.html
<协议>:∥<服务器类型> . <域名>/<目录>/<文件名>
/**
* @method webFormat 格式化网址 pure
* @param { Array<string> } webList 网址数组
* @param { Number } lenLimit 限制显示长度
* @returns 处理后的网址数组
*/
function webFormat(webList, lenLimit) {
if (Array.isArray(webList)) {
let formatWebList = [];
webList.forEach((item) => {
let domainIndex = item.indexOf("//") + 2;
const formatWeb = item.length - domainIndex > lenLimit ? item.substring(domainIndex, lenLimit + domainIndex) + "..." : item.substring(domainIndex);
formatWebList.push(formatWeb);
});
return formatWebList;
} else if (typeof webList === "string") {
if (webList.startsWith("http://") || webList.startsWith("https://")) {
let domainIndex = webList.indexOf("//") + 2;
const formatWeb = webList.length - domainIndex > lenLimit ? webList.substring(domainIndex, lenLimit + domainIndex) + "..." : webList.substring(domainIndex);
return formatWeb;
} else {
throw webList
}
}
}