在用Eclipse加载Ext的时候,很容易造成的就是Eclipse一直在building workspace,直到Eclipse卡得动不了。
在试过把所有的validation去掉后,把Eclipse的内存加大也不行后,在网上查了好久,终于解决了。
方法如下:
打开项目的.project文件,将
<buildCommand>
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<arguments> </arguments>
< /buildCommand>
跟
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
这两个地方删掉即可。。。。。
本文来自http://blog.csdn.net/hingyi/article/details/7983049