SE7EN 发表于 2013-2-7 15:16:05

Struts DispatchAction 报错

 
今天遇到了Struts DispatchAction错误:

使用Struts的DispatchAction时报错:does not contain handler parameter named 'method'. This may be caused by whitespace in the label text

这个异常往往是大家对DispatchAction 不熟悉造成,在用它的时候别忘记了在STRUTS-CONFIG中的<action>属性加

parameter="method",还有<html:form>和普通的<form>是有区别的,在用form提交表单的时候别忘记要家范围method="post",不

然也会有错,还有在action.do?method=XXXX这个中间不要有空格!
页: [1]
查看完整版本: Struts DispatchAction 报错