Eclipse 中,JS报错

运行无误的javaweb项目,重新建了个空的项目,复制进去后,JS竟然报错!但是项目可以正常运行。

在原来的项目中,都没有报错,使用Eclipse3.7新建的时候,把原来的js复制进去,就报错了。

检查后发现,新建的web项目中,.project配置文件中,加入了JS验证框架org.eclipse.wst.jsdt.core.javascriptValidator

如果写JS的时候,不符合规范或者写的有误,Eclipse还是会报出来,但是项目可以正常运行。所以考虑了下,暂时还是去掉这个验证。

图中注释掉的(绿色的)就是需要去掉的。

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>myPro</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<!--<buildCommand>-->
			<!--<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>-->
			<!--<arguments>-->
			<!--</arguments>-->
		<!--</buildCommand>-->
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.wst.common.project.facet.core.builder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.wst.validation.validationbuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
		<!--<nature>org.eclipse.wst.jsdt.core.jsNature</nature>-->
	</natures>
</projectDescription>





你可能感兴趣的:(eclipse,框架,Web,encoding)