struts.xml中怎么跳转到方法?
<struts><packagename="Action"extends="struts-default"><actionname="customer"class="cu...
<struts>
<package name="Action" extends="struts-default">
<action name="customer" class="customerAction">
<result name="toFindAll" type="redirectAction">customer!findAll</result>
</action>
</package>
</struts>
说是
还有checkbox的值怎么存入到数据库啊
<form name="form1" action="customer!save.action" method="post">
<td>运动<input type="checkbox" name="hobbies" value="运动" >
艺术<input type="checkbox" name="hobbies" value="艺术">
宅<input type="checkbox" name="customer.hobbies" value="宅" ></td></tr>
</form> 展开
<package name="Action" extends="struts-default">
<action name="customer" class="customerAction">
<result name="toFindAll" type="redirectAction">customer!findAll</result>
</action>
</package>
</struts>
说是
还有checkbox的值怎么存入到数据库啊
<form name="form1" action="customer!save.action" method="post">
<td>运动<input type="checkbox" name="hobbies" value="运动" >
艺术<input type="checkbox" name="hobbies" value="艺术">
宅<input type="checkbox" name="customer.hobbies" value="宅" ></td></tr>
</form> 展开
1个回答
展开全部
根据本人所学,struts并没有提供跳转到方法的配置,只能跳转到视图或action。不过可以采取如下方法:<action name="action名称" method="方法名称">,然后就可以在另一个action中设置跳转到action。这样就间接实现了跳转到指定方法。
checkbox同一个组的name相同,那么在action层接收参数时可以用数组来接收,假设数据库中需要String类型的,private String[] hobbies;至于如何存入数据库,就要看你的数据表结构了。既然已经拿到String[]类型的数据了,处理成你数据库需要的类型存进去就ok
checkbox同一个组的name相同,那么在action层接收参数时可以用数组来接收,假设数据库中需要String类型的,private String[] hobbies;至于如何存入数据库,就要看你的数据表结构了。既然已经拿到String[]类型的数据了,处理成你数据库需要的类型存进去就ok
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询