gpt4 book ai didi

jsp - 如何解决struts2中的逗号分隔值

转载 作者:行者123 更新时间:2023-12-04 18:27:54 25 4
gpt4 key购买 nike

我有一个让用户创建项目的 JSP。

创建后,我将它们显示在表格的同一页面中,以及两个按钮,即更新和删除。

当用户更改值并单击更新时,值正在更改并显示添加,第一行列值+以逗号分隔的更改值。

谁能告诉我为什么会这样以及如何解决。

找到下面的jsp文件

<%@ page contentType="text/html; charset=UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>

<script type="text/javascript">

function updateRow(id) {
var manufacturer = document.getElementById("manufacturer").value;
var family = document.getElementById("family").value;
var model = document.getElementById("model").value;

var url = "id="+id+"&manufacturer="+manufacturer+"&model="+model+"&family="+family;
document.globalForm.action= "http://localhost:8080/ContentInventory/update.action?id=" + id + "&manufacturer="+ manufacturer + "&model=" + model + "&family=" + family;
document.globalForm.submit();
}

function deleteRow(id) {
document.globalForm.action = "http://localhost:8080/ContentInventory/delete.action?id="+id;
document.globalForm.submit();

}

function addDetails() {
document.globalForm.action = "http://localhost:8080/ContentInventory/add.action";
alert(document.globalForm.action);
document.globalForm.submit();

}
</script>

<html>

<body>

<h1>Global Handset Compatibility</h1>
<s:actionerror />

<s:form id="globalForm" name="globalForm" method="post" theme="simple" >
<table>

<tr>
<td><s:label value="Manufacturer" />
</td>
<td><s:textfield name="manufacturer" label="Manufacturer" />
</td>
</tr>
<tr>
<td><s:label value="Model" />
</td>
<td><s:textfield name="model" label="Model" />
</td>
</tr>
<tr>
<td><s:label value="Family" />
</td>
<td><s:textfield name="family" label="Family" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<!--<s:submit value="Add Inventory" align="center" />-->
<input type="button" value="Add Inventory" id="addButton" onclick="javascript:addDetails()" >
</td>
</tr>
</table>





<h2>Inventory List</h2>
<table id="global" border="1" width="100%">
<tr>
<th>Manufacturer</th>
<th>Model</th>
<th>Family</th>
<th>Delete</th>
<th>Edit/Update</th>
</tr>

<s:if test="%{globalList.size() > 0}">
<s:iterator value="globalList" id="globals">

<tr>


<td align="center">
<s:textfield id="manufacturer" name="#globals.manufacturer" /></td>

<td align="center"><s:textfield id="model" name="#globals.model" /></td>



<td align="center"><s:textfield id="family" name="#globals.family" /></td>

<td align="center"><input type="button" value="Delete" id="deleteButton" onclick="javascript:deleteRow('<s:property value="id"/>')">
</td>
<td align="center">
<input type="button" value="Update" id="updateButton<s:property value="id"/>" onclick="javascript:updateRow('<s:property value="id"/>')">

</td>
</tr>
</s:iterator>

</s:if>
<s:else>
<tr>
<td colspan="5">No Data Found</td>
</tr>
</s:else>

</table>
</s:form>
</body>
</html>

在 Action 类中,我有字段的 getter 和 setter 方法,在单击更新按钮时,我使用 js 获取更新的值并发送到后端。值插入正确,但在显示页面时,它显示了用逗号分隔的值,第一和第二个值也是不正确的...

感谢您的回复

最佳答案

这件事前几天发生在我身上。事实证明,我有多个同名字段。

希望对您有所帮助。

关于jsp - 如何解决struts2中的逗号分隔值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15319981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com