Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这在 javascript 中是什么意思?我刚刚开始使用 ext-js。示例头文件中的第一行是
Ext.require('Ext.tab.*');
这是什么意思 ?
该调用用于动态加载类/脚本:
Ext - Sencha Docs - Ext JS 4.0
因此,您的调用动态加载 Ext.tab 命名空间中的所有类(因为您使用的是通配符表达式)。