Struts2 获取文本框(动态)到操作类

发布于 2024-09-16 00:32:04 字数 68 浏览 5 评论 0原文

我有一个 struts 页面,其中的文本框带有动态 ID,并且希望将此值放入 Action 类中。有人可以帮我解决代码吗?

I have struts page where the text boxes are with dynamic ID and wanted to get this values into Action class. Can someone please help me with the code plz.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掐死时间 2024-09-23 00:32:04

为什么没有人回答这个问题?不过回答这个问题有点晚了。我们将以某种格式(如 json)附加文本框的所有数据。您的 URL 将类似于 /someclass.action?knownvariable=[{textbox1:value1},{textbox2:value2}] 并将其作为名称固定的变量传递。在 Action 类中可以访问这些数据。

Why did no one answer this question? Its a bit late to answer this question though. Well append all the data of textboxes in some format like json. Your URL will look something like /someclass.action?knownvariable=[{textbox1:value1},{textbox2:value2}] and pass it as one variable whose name is fixed. In Action class these data can be accessed.

抚笙 2024-09-23 00:32:04

Silpa,可能如下删除该参数并使用 getter setter 方法。希望这有帮助。

public String retrieveDataFromDB() {
   // Do something here 
   return "SUCCESS";
}

public void setKnownvariable(String knownvariable){
    this.knownvariable=knownvariable;
}

public String getKnownvariable(){
     return knownvariable;
}

private String knownvariable;

Silpa, probably remove that parameter as below and use getter setter methods. Hope this helps.

public String retrieveDataFromDB() {
   // Do something here 
   return "SUCCESS";
}

public void setKnownvariable(String knownvariable){
    this.knownvariable=knownvariable;
}

public String getKnownvariable(){
     return knownvariable;
}

private String knownvariable;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文