条纹问题提交
我目前在使用 Stripes 中的submit
按钮时遇到问题。它完全忽略它应该调用的事件。 Actionbean 正在处理链接,没有任何问题...我在这个问题上呆了大约 3 个小时。
ActionBean JSP 中的事件
@HandlesEvent("addc")
public Resolution addc() {
log.debug("addc() contract={}", contract);
contractFacade.create(contract);
return new RedirectResolution(this.getClass(), "all");
}
:
<s:form beanclass="actionbean.ContractsActionBean">
<%@include file="forms/formContractDetails.jsp"%>
<ul>
<li><s:submit name="addc" class="submit" title="">Add C</s:submit></li>
<li><s:link href="/all">Cancel</s:link></li>
</ul>
</s:form>
I'm currently experiencing a problem with submit
button in Stripes. It completely ignores event, that it should call. Actionbean is working on links with no problems... Im stuck on that for like 3 hours.
event in actionbean
@HandlesEvent("addc")
public Resolution addc() {
log.debug("addc() contract={}", contract);
contractFacade.create(contract);
return new RedirectResolution(this.getClass(), "all");
}
jsp:
<s:form beanclass="actionbean.ContractsActionBean">
<%@include file="forms/formContractDetails.jsp"%>
<ul>
<li><s:submit name="addc" class="submit" title="">Add C</s:submit></li>
<li><s:link href="/all">Cancel</s:link></li>
</ul>
</s:form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Actionbean
在{$event}
上进行了@UrlBind
编辑,将其更改为/ab/{$event}
现在可以了。可能对index.jsp之类的有一些干扰。这种东西有一天会杀了我。一整天丢失了超过 4 个字符。希望它至少能帮助别人。Actionbean
was@UrlBind
-ed on{$event}
, changed it to/ab/{$event}
and it works now. Probably some interference with index.jsp or something. This is the kind of stuff that will kill me some day. Whole day lost over 4 chars. Hope it will help someone else at least.