我如何将struts2标签checkboxlist元素存储在数据库中?

发布于 2024-09-11 02:02:10 字数 122 浏览 2 评论 0 原文

如果我想将struts2标签checkboxlist元素存储在数据库中,我如何将它保存在数据库中。我的意思是我如何使用checkboxlist标签,

就像我如何在表中声明它一样。我如何使用它?

谢谢

If i wanted to store the struts2 tag checkboxlist elements in the database ,How do i save it in the database .I mean how do i work with the checkboxlist tag ,

like how do i declare it in the table .How do i use it ?

Thanks

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

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

发布评论

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

评论(1

流心雨 2024-09-18 02:02:10

这里有几个 不同 示例展示了如何在 Action 类和视图中使用复选框列表。

将复选框提交给您的操作后,您将获得一个包含选中的 String 值的列表。然后,您可以将这些字符串保存在数据库中适当的字段类型中(即对于 MySQL,可以是 CHAR 或 VARCHAR)。

Here are several different examples showing how to use the checkboxlist in your Action class and view.

Once the checkbox is submitted to your action, you'll have a List populated with the checked String values. You can then save those Strings in your database in an appropriate field type (i.e. for MySQL that could be CHAR or VARCHAR).

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