VUE项目,有一个页面需要引入第三方CDN,为了不污染全局,我没有在index.html里引入,而是在加载该页面时写入Script标签,把该CDN引入
created(){
const s = document.createElement("script");
s.type = "text/javascript";
s.src =
"https://apis.map.qq.com/tools/geolocation/min?key=mykxxxxxey&referer=myApp";
document.head.appendChild(s);
// document.getElementsByTagName('head')[0].appendChild(s)
},
然后在mounted内使用这个CDN的资源,发现报错(应该是这个外部资源,没有加载完成)
mounted() {
var geolocation = new qq.maps.Geolocation();
geolocation.getIpLocation(showPosition, showErr);
function showPosition(position) {
console.log(position);
}
function showErr() {
.......
}
},
这种情况怎么办?
我只想在该页面时引入这个CDN,然后在mounted里调用,该怎么解决?