假设我想引用一个CDN的角度,但是如果CDN的呼叫失败,我也想回退。指向一个本地的js文件。当谈到JQuery时,我已经看到了一些例子,你可以在javascript中做这样的事情:
if(typeof jQuery == 'undefined') { .... }
有什么类似的角度我可以做吗?
if(typeof angular == 'undefined') { .... }
if(typeof jQuery == 'undefined') { .... }
有什么类似的角度我可以做吗?
if(typeof angular == 'undefined') { .... }