我必须编写一个后台页面,以确定哪些商店必须在Struts 1应用程序的前台页面上显示。所以我有一个商店列表(代码中的精品店),包含在表格中。
表格:
public class ListeBoutiquesForm extends ActionForm {
private List<Boutique> boutiques = new ArrayList<Boutique>();
public List<Boutique> getBoutiques() {
return boutiques;
}
public void setBoutiques(List<Boutique> boutiques) {
this.boutiques = boutiques;
}
}
和保存操作:
public ActionForward sauverBoutiques(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
ListeBoutiquesForm vlbf = (ListeBoutiquesForm) form;
for (Boutique boutique : vlbf.getBoutiques()) {
boutiqueService.updateBoutique(boutique);
}
request.getSession().removeAttribute("ListBoutiques");
return listeSites(mapping, form, request, response);
}
Boutique类包含一个id,一个名称和一个名为“selected”的布尔值。我想显示名称,我的精品店列表的每个元素都有一个复选框,还有一个调用我的保存操作的提交按钮,但我缺乏编写JSP的Struts taglib知识。你能帮我吗?我知道它应该包含一个logic:iterate
,一个html:checkbox
,可能还有一个html:hidden
来存储ID,但我感觉有些东西丢失了,有些东西我不明白。这些是如何联系在一起的呢?如何在保存操作中使用更新的值返回ListeBoutiquesForm?
修改
根据Susie的建议,我提出了以下JSP:
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %>
<html:errors/>
<html:form action="/admin/boutiqueviparis">
<input type="hidden" name="reqCode" value="sauverBoutiques" />
<table class="tableStatic noHead">
<logic:notEmpty name ="viparisListeBoutiquesForm" property="boutiques">
<logic:iterate id="boutique" name ="viparisListeBoutiquesForm" property="boutiques">
<tr>
<td>
<html:hidden name ="boutique" property="id" />
<bean:write name="boutique" property="nom" />
</td>
<td>
<html:checkbox name="boutique" property="selected" value="true" />
</td>
</tr>
</logic:iterate>
<html:submit styleClass="boutonrouge" value="Valider" onclick="this.form.reqCode.value='sauverBoutiques';return window.confirm('Modification validée');"/>
</logic:notEmpty>
</table>
</html:form>
显示商店列表和复选框,相应地选中“已选择”字段的值。但我的保存操作不起作用。在这里我的保存动作,如果有人有想法:
public ActionForward sauverBoutiques(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
ViparisListeBoutiquesForm vlbf = (ViparisListeBoutiquesForm) form;
for (Boutique boutique : vlbf.getBoutiques()) {
log.debug("########## BOUTIQUE nom : "+boutique.getNom()+" selected :"+boutique.isSelected());
boutiqueService.updateBoutique(boutique);
}
request.getSession().removeAttribute("viparisListBoutiques");
return listeSites(mapping, form, request, response);
}
我可以在我的Hibernate日志中看到更新语句,但实际上没有保存任何内容。我记录了selected
字段的值,实际上,它是初始值,然后我以显示的形式更改了它。有点令人费解......
修改
实际上,<html:checkbox name="boutique" property="selected" value="id" />
在最终HTML中显示为<input type="checkbox" name="selected" value="id">
,其中“id”而不是id值。但我不知道如何解决这个问题......
答案 0 :(得分:4)
以下是您应该做的事情。 struts-config.xml文件将所有内容粘合在一起的配置文件。
parameter ---> which method to call
name---> name of the action form
path---> URL
type---> action class that is invoked by the above url.
forward---->where to forward once it's done.
如您所见,我在myMethod()中设置了列表,并在下面的jsp中访问。
JSP页面:
<form name="myForm" action="myAction.do" method="post">
<logic:notEmpty name="myForm" property="myList">
<logic:iterate id="boutique" name="myForm" property="myList" type="com.Boutique">
<tr>
<td><bean:write name="boutique" property="id" /> </td>
<td><bean:write name="boutique" property="name" /></td>
<td><bean:write name="boutique" property="selected" /></td>
</tr>
</logic:iterate>
</logic:notEmpty>
</form>
在我的动作类方法中:
public ActionForward myMethod(ActionMapping actionMapping,
ActionForm myForm, HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) throws Exception {
List<Boutique> myList = new ArrrayList<Boutique>();
form.setMyList(myList);
return mapping.findForward("success");
}
<强>的struts-config.xml 强>
<struts-config>
<form-beans>
<form-bean name="myForm" type="com.usps.nom.tops.web.struts.form.transportation.ITransportationInquiryDynaForm">
</form-bean>
</form-beans>
<action-mappings>
<action path="/myAction" type="com.MyAction"
name="myForm" scope="session" validate="false"
parameter="myMethod">
<forward name="success" path="tile.view"></forward>
</action>
</action-mappings>
</struts-config>
答案 1 :(得分:0)
最后,我根本没有使用Struts html:checkbox标签。经过一些研究,看来Struts 1没有很好地处理复选框......
这是我目前的JSP:
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %>
<html:errors/>
<html:form action="/admin/boutiqueviparis">
<input type="hidden" name="reqCode" value="sauverBoutiques" />
<table class="tableStatic noHead">
<logic:notEmpty name ="viparisListeBoutiquesForm" property="boutiques">
<logic:iterate id="boutique" name ="viparisListeBoutiquesForm" property="boutiques">
<tr>
<td>
<html:hidden name="boutique" property="id" />
<bean:write name="boutique" property="nom" />
</td>
<td>
<logic:equal name="boutique" property="selected" value="true">
<input type="checkbox" name="boutique_<bean:write name="boutique" property="id" />" value="<bean:write name="boutique" property="id" />" checked="1" />
</logic:equal>
<logic:equal name="boutique" property="selected" value="false">
<input type="checkbox" name="boutique_<bean:write name="boutique" property="id" />" value="<bean:write name="boutique" property="id" />" />
</logic:equal>
</td>
</tr>
</logic:iterate>
<html:submit styleClass="boutonrouge" value="Valider" onclick="this.form.reqCode.value='sauverBoutiques';return window.confirm('Modification validée');"/>
</logic:notEmpty>
</table>
</html:form>