ExtJs 骑在 jQuery 适配器之上
我知道我们实际上可以在 jquery 适配器之上运行 extjs,即
但是这样做的原因是什么?我可以不只是分别包含这两个库并独立使用它们,即在 extjs 中使用 jQuery 代码,反之亦然...
I understand that we can actually run extjs on top of a jquery adapter, i.e.
But what is the reason for doing that? Can I not just include both libraries separately and use them indepedently, i.e using jQuery codes in extjs and vice versa...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,对于同样具有 jQuery 的项目,您没有理由不能在
ext-base
之上使用ext-all
。您可以提出这样的论点:如果您只需使用 jQuery 作为基础,就会节省
ext-base.js
文件的重量(小,缩小后 25kb)。There's no reason that I know of that you couldn't use
ext-all
on top ofext-base
for a project that also had jQuery.You could make an argument that if you simply had to have jQuery using it as your base would save you the (small, 25kb minified) weight of the
ext-base.js
file.