开发者

extjs, is it possible to compress load ext-all.js?

I have a website that's using the extjs librar. Exactly I just need grid, ajax and tree co开发者_如何学编程mponent.

My project is used nationally, and to avoid problems due to low bandwith in the some regions, I must to make it as light as possible.

When I use the developer tools in chrome, my site is too heavy. Especially when loading ext-all.js. It take 3,9 minutes to load(@512kbps), (even when I remove my own images and css from the website).

Is there a way to compress it? Or to just load the tree, grid and ajax components?

I was googling.. and I got this

<script type="text/javascript" src="js/ext-all.js?compression=gzip"></script>

but, it didn't help much.


This is the page that shows you how to build custom versions of ext-js. http://www.sencha.com/learn/Tutorial:Building_Ext_From_Source

They had a link to an online builder that would customize the download but it's been taken down. The link mentioned still points to good resources like JsBuilder, the tool they use to generate ext-all.js and the other packages in the distribution. Just open the ext.jsb to see how it works

extjs, is it possible to compress load ext-all.js?

You'll need to figure out the dependencies on your own though, good luck!


I'd estimate that at 512k, the extjs load should be around 30 s - 1 minute.

If you're looking at a 4 minute load time, your time is probably spent somewhere other than the download of the library. Are you sure it's the size of your download, or even extjs that is the problem? Could it be that your webserver is under heavy load, or that you're dealing with a latency issue?

As far as reducing the size of the library - there isn't much more you can do. The library is provided in minified format, and stripping it further is not recommended. Zipping it up only means you'll have to unzip at the other end once downloaded, and doesn't buy you that much load time with a library that's already very small.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜