如何在 Struts2 中获取特定的未选中复选框

2023-06-14前端开发问题
3

本文介绍了如何在 Struts2 中获取特定的未选中复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在我的应用程序中,我在某些特定操作上打印了一些文档以及一些复选框(默认情况下,当页面加载时,某些复选框会被选中).

In my application I am printing some document along with some checkboxes (Some checkboxes get checked by default when page loads) on some specific action.

现在用户将选中一些复选框或取消选中一些.并点击更新按钮.

Now user will Check some checkboxes Or may uncheck some. And clicks on update button.

现在我的要求是我想要未选中的复选框值.

例如:

当页面第一次加载时,有 5 个复选框被选中大约 700 个复选框中的默认值;

When the page loads first time there are 5 checkboxes checked by default out of some 700 check boxes;

现在用户将取消选中 2 个复选框并单击提交.

now user will uncheck 2 checkboxes and clicks on submit.

我的要求在这里 我想要那 2 个我的操作类中未选中的复选框值.

My requirement is here I want those 2 unchecked checkboxes values in my action class.

我正在使用 Struts2 打印这些文档.我正在使用 Struts2-jQgrid,我尝试使用 Struts2 CheckboxInterceptor 来获取未选中的复选框,但它给了我所有未选中的复选框,而不仅仅是所需的复选框(改变状态的复选框).p>

I am using Struts2 to print those documents. I'm using Struts2-jQgrid, I have tried Struts2 CheckboxInterceptor to get the unchecked ones but it's giving me all the unchecked checkboxes, not only the desired ones (the ones that changed their state).

推荐答案

假设您从迭代自定义对象列表开始,

Assuming you start by iterating a List of custom objects,

private List<MyCustomObject> myList;

并且您的自定义对象具有例如.boolean isChecked()String getValue() 方法,

and that your custom object has eg. boolean isChecked() and String getValue() methods,

您可以在目标操作中使用两个不同的列表:一个用于未选中但现在已选中的项目,另一个用于已选中但现在未选中的项目强>:

you could use two different Lists in the destination Action: one for the items that were unchecked and now are checked, and another one for items that were checked and now are unchecked:

private List<String> itemsThatHaveBeenChecked;
private List<String> itemsThatHaveBeenUnchecked;

然后在页面中,您应该使用经典复选框来获取选中项,并使用隐藏输入来存储未选中项的值,使用 javascript 激活其值,与复选框值相反(必须没有名称):

then in the page you should use a classic checkbox to get the checked items, and an hidden input to store the value of the unchecked items, activating its value with javascript as opposite to the checkbox value (that must have no name):

<s:iterator value="myList" status="ctr">
    <s:if test="!isChecked()">
        <!-- I'm not checked, need to catch only if I will be checked -->
        <s:checkbox id = "checkbox_%{#ctr.index}" 
            fieldValue = "%{getValue()}"
                 value = "false" 
                  name = "itemsThatHaveBeenChecked" />
    </s:if>
    <s:else>
        <!-- I'm checked, need to catch only if I will be unchecked -->
        <input type = "checkbox" 
                 id = "<s:property value="%{'checkbox_'+#ctr.index}"/>"
            checked = "checked"
              class = "startedChecked" />
        <!-- hidden trick -->
        <input type = "hidden" 
                 id = "hidden_<s:property value="%{'checkbox_'+#ctr.index}"/>" 
              value = "<s:property value="%{getValue()}"/>"         
               name = "itemsThatHaveBeenUnchecked" 
           disabled = "disabled" />            
    </s:else> 
</s:iterator>

<script>
    /* Enable the hidden field when checkbox is unchecked, 
      Disable the hidden field when checkbox is checked    */
    $(function() {
        $("input[type='checkbox'].startedChecked").change(function () {
            $("#hidden_"+this.id).prop({disabled : this.checked});
        });
    });
</script>

这样您将只获得两个列表中所需的值.

This way you will get only the values needed in both Lists.

这篇关于如何在 Struts2 中获取特定的未选中复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

js删除数组中指定元素的5种方法
在JavaScript中,我们有多种方法可以删除数组中的指定元素。以下给出了5种常见的方法并提供了相应的代码示例: 1.使用splice()方法: let array = [0, 1, 2, 3, 4, 5];let index = array.indexOf(2);if (index -1) { array.splice(index, 1);}// array = [0,...
2024-11-22 前端开发问题
182

layui中表单会自动刷新的问题
layui中表单会自动刷新的问题,因为用到layui的表单,遇到了刷新的问题所以记录一下: script layui.use(['jquery','form','layer'], function(){ var $ = layui.jquery, layer=layui.layer, form = layui.form; form.on('submit(tijiao)', function(data){ a...
2024-10-23 前端开发问题
262

JavaScript小数运算出现多位的解决办法
在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会...
2024-10-18 前端开发问题
301

jQuery怎么动态向页面添加代码?
append() 方法在被选元素的结尾(仍然在内部)插入指定内容。 语法: $(selector).append( content ) var creatPrintList = function(data){ var innerHtml = ""; for(var i =0;i data.length;i++){ innerHtml +="li class='contentLi'"; innerHtml +="a href...
2024-10-18 前端开发问题
125

JavaScript(js)文件字符串中丢失"\"斜线的解决方法
问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转...
2024-10-17 前端开发问题
437

layui中table列表 增加属性 edit="date",不生效怎么办?
如果你想在 layui 的 table 列表中增加 edit=date 属性但不生效,可能是以下问题导致的: 1. 缺少日期组件的初始化 如果想在表格中使用日期组件,需要在页面中引入 layui 的日期组件,并初始化: script type="text/javascript" src="/layui/layui.js"/scrip...
2024-06-11 前端开发问题
455