我有一个非常奇怪的问题。我正在开发Java和Spring MVC的Web应用程序。我有一行可以由用户按下按钮动态复制。每行有大约10个字段。我将这些行绑定为支持bean中的对象列表,并将此列表初始化为bean中的惰性列表。现在,它一直工作到现在,但是用户试图输入12行并且在第12行,即第11次迭代(从0开始的迭代),第5个字段变为空,尽管用户输入值并且所有其他领域保留其价值。由于绑定发生在name上,我检查了字段的名称,它与同一行中的其余字段和其余行一致。我无法调试和纠正问题。这影响了生产中的代码。
我可以提供所需的任何代码片段。
请有人帮我解决这个问题。提前谢谢。
编辑:我尝试在不同的服务器上执行相同的代码,但它在那里工作正常但仍然存在于实时服务器上。问题似乎只出现在第11次迭代的第5场。这可能是服务器的问题添加代码:
JSP:
<c:forEach items="${addProposal.requirements}" var="req" varStatus="status">
<!--Rest of the fields-->
<form:input path="requirements[${status.index}].sampleSize" id="r_sample${status.index}" value="${addProposal.requirements[status.index].maximumFeasibility}" class="inptform2" style="width:65px;" size="10" onchange="functions();"/>
<!--Rest of the fields-->
<td width="57" align="left" valign="middle" id="btn-close" class="btn-remove">' +
'<a href="javascript:void(0)"><img src="images/btncross.png" width="18" height="17" border="0" />' +
'</a>
</td>
</c:forEach>
使用Javascript:
$(document).ready(function(){
//Add more dynamic rows
$("#addMore").click(function() {
var tr_temp=$("#requirement tr:first").clone();
//rest of the fields code
tr_temp.find("#r_sample0").each(function() {
$(this).attr({
'id': function(_, id) { return 'r_sample' + i},
'name': function(_, name) { return 'requirements[' + i + '].sampleSize'},
'value': ''
});
}).end();
tr_temp.find("td:last").remove();
tr_temp.append(btn_close);
tr_temp.appendTo("#requirement");
i++;
});
//To remove a dynamically added row
$("#btn-close").live('click',function(){
doNotDel=false;
count=0;
//To fetch the values of the Input Fields
$(this).parent().find("input").each(function(){
count++;
var value = $(this).val();
var id=$(this).attr('id');
if(id.indexOf("r_total")==-1){
//Skip the minutes and currency column
if(id.indexOf("minutes")==-1 && id.indexOf("currencyValF")==-1 && id.indexOf("currencyVal")==-1){
if(value!=""){
doNotDel=true;
return false; //breaks the .each loop
}
}
}
});
if(doNotDel==false){
$(this).parent().remove();
}
});
});
豆:
private List<RequirementBean> requirements;
//in constructor
requirements = LazyList.decorate(
new ArrayList<RequirementBean>()
, new InstantiateFactory(RequirementBean.class));
控制器:
@RequestMapping(value="/addProposal", method=RequestMethod.POST)
public String addProposal(@ModelAttribute("addProposal") ProposalBean proposal, ModelMap model){
RequirementBean req;
List<RequirementBean> reqmtList;
System.out.println("Before empty rows");
reqmtList = proposal.getRequirements();
for(int i=0; i<reqmtList.size(); i++){
req = reqmtList.get(i);
if(req.getCountry()!=null){
System.out.println("sample size " + i + " :" + req.getSampleSize());
}
}
}
编辑: 我尝试在同一列中更改第4行的值,现在代码似乎正常工作。我仍然无法理解这是什么问题。
希望这能更清晰。请帮帮我。