extjs 动态加载javascript文件

nkhmeac6  于 2022-11-04  发布在  Java
关注(0)|答案(1)|浏览(191)

我正在尝试将Nivo图表添加到我的基于ExtJS的应用程序中。如果我生成Nivo图表的构建,那么它会创建多个文件。我需要在我的ExtJS应用程序中动态加载它们。最好的方法是什么?
另外,Nivo chart build会生成一个index.html文件,其中包含所有javascript文件的引用。那么,是否有一种方法可以使用index.html在ExtJS中加载所有这些脚本文件?

41ik7eoe

41ik7eoe1#

有两种方法:
1.同步:https://docs.sencha.com/extjs/7.3.1/modern/Ext.Loader.html#method-loadScript

Ext.Loader.loadScriptsSync(url);

1.异步:https://docs.sencha.com/extjs/7.3.1/modern/Ext.Loader.html#method-loadScript

Ext.Loader.loadScript({
        url: scriptUrl,
        onLoad: fn
    });

相关问题