ET5c6czY1

23朵毒蘑菇

变量添加的小例子,怎样使用。

毒蘑菇变量

2023-01-28 17:28:18 已有版本 1 个 show:0.58kTYPE: blog

可以直接使用标签引入的方式。

变量说白了就只是的js文件而已,里面有个赋值的语句。引入就不说了,前端都会。

动态加载的方式

// 加载脚本
function loadScript(src) {
    return new Promise((r, j) => {
        let el = document.createElement('script');
        el.type = 'text/javascript';
        el.src = src;
        document.head.appendChild(el);
        el.onload = () => {
            r();
        };
        el.onerror = () => {
            j();
        };
    });
}
loadScript("https://dumogu-web-var.oss-cn-chengdu.aliyuncs.com/L4nn3kMBl.js").then(()=>{
    console.log($test_var);
});

使用json直接获取数据

let a = fetch("https://dumogu-web-var.oss-cn-chengdu.aliyuncs.com/L4nn3kMBl.json").then(res=>{
    return res.text(); 
}).then(res=>{
    console.log(res);
});

目前常用的就这三个方法,注意网站是否使用https,目前cdn还为用上https。源链接也是很快的。