关于DynaActionForm

阅读更多

1.import org.apache.struts.action.DynaActionForm;

2. struts-**.xml 中

 
  
   
  

 

3.Action 中

  DynaActionForm df = (DynaActionForm) form;
  SomeObject    some  = (SomeObject) df.get("test");

4.test.jsp 中

   name="test.name"

嘎嘎, 省得麻麻烦烦的写一大堆的request.getParameter("");

注:日期类是取不到的哦...

你可能感兴趣的:(Struts,Bean,Apache,JSP,XML)