Last active
September 24, 2021 04:46
-
-
Save zhangzhibin/9bfc7debf08a5300c0101e1c1f19a904 to your computer and use it in GitHub Desktop.
Dynamically load a js script and set parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JavaScript 根据需要动态加载脚本并设置参数 | |
// refer to https://xmanyou.com/javascript-dynamically-load-script-and-set-parameters/ | |
async function loadJsAsync(src:string, async:boolean=false, options?:any) { | |
return new Promise<void>((resolve, reject) => { | |
const script = document.createElement('script'); | |
script.src = src; | |
script.async = async; | |
if(options) { | |
for(const key in options) { | |
// script[key] = options[key]; | |
script.setAttribute(key, options[key]); | |
} | |
} | |
let onload = () => { | |
script.removeEventListener('load', onload); | |
// resolve in onload callback for async loading | |
if(!async) { | |
resolve(); | |
} | |
}; | |
script.addEventListener('load', onload); | |
script.addEventListener('error', (err) => { | |
console.error(err); | |
reject(new Error(`Failed to load ${src}`)); | |
}); | |
// document.head.appendChild(script); | |
( document.getElementsByTagName("head")[0] || document.documentElement ).appendChild( script ); | |
// resolve immediately for sync loading | |
if(async){ | |
resolve(); | |
} | |
}); | |
} | |
export { loadJsAsync } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment