Struts2 CRUD,如何更新模型:ModelDriven。 JSP中始终为空
我无法在 JSP 中检索模型来更新对象。
public class ViewDashboardAction extends ActionSupport implements ModelDriven { private Clinique clinique = null; @Override public Clinique getModel() { return clinique; } public String execute() throws Exception { clinique = service.read(1); // at this point my object is populated return SUCCESS; }
在我的 JSP 中,我想要一些简单的东西
<s:textfield name="nom" key="clinique.nom" value="nom"></s:textfield>
,但我的文本字段始终为空。
我缺少什么?
I'm not able to retreive my Model in my JSP to update the object.
public class ViewDashboardAction extends ActionSupport implements ModelDriven { private Clinique clinique = null; @Override public Clinique getModel() { return clinique; } public String execute() throws Exception { clinique = service.read(1); // at this point my object is populated return SUCCESS; }
in my JSP I want to have something that simple
<s:textfield name="nom" key="clinique.nom" value="nom"></s:textfield>
but my textfield is always blank.
What I'm missing ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
try this