首页 > 代码库 > no result defined for action

no result defined for action

1.no result defined for action .......and result input    或者

    no result defined for action .......and result dataAccessFailure    

原因: 类型转换异常

   1.实体类中,有Double类型的属性, 当页面向action传参时,action中的属性有该实体,页面传的是String类型的,属性不能转换

       2. 页面中 <input name=" ">   有多个input标签,name值一样, 传过来了多个值,  导致实体中的属性不知道用哪个值

解决:

  该属性,在action中单独接收,在调用实体的set方法

 

思考:strut2接收页面参数时的类型自动转换机制? 

no result defined for action