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.
我的项目中有 BranchStore.js 和 BranchModel.js。我想在我所有的 ext js 4 应用程序中使用它。是否可以?
这是可能的,但您需要Ext.require在每个项目中加载它们,然后才能使用它们。
Ext.require
要么将代码放在 html 中的脚本标签中,要么使用 Ext.syncRequire('path.js'); 获取它们。常规的 Ext.require() 调用是异步的,并且在调用加载它之后代码不会立即可用。