gpt4 book ai didi

java - 如何从表中的 struts 标记发送带有操作 URL 的参数

转载 作者:太空宇宙 更新时间:2023-11-04 14:42:10 24 4
gpt4 key购买 nike

我正在表中的 struts 1 标记中填充一些值。现在我想使用 URL 发送该表的值,该 URL 是该表的超链接。我可以调用该操作,但无法发送带有 URL 的参数。到目前为止我所做的是,,

<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$('#metalPager').dataTable( {

"bFilter":true,
"aoColumns": [
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": true }
]

} );
} );
</script>




<table width='70%' align="center" cellpadding="0" cellspacing="0" border="1" name="userSTPForm" id="metalPager">
<thead>
<tr>
<th>STATUS</th>
<th>SAPCODE</th>
<th>FIRST NAME</th>
<th>LAST NAME</th>



</tr>
</thead>
<tbody>
<logic:iterate name="listOfSTPUsers" id="listOfSTPUsersId" >
<tr>
<td><bean:write name="listOfSTPUsersId" property="value"/></td>
<td><html:link href="exelunitUpload.do?action_name=" ><bean:write name="listOfSTPUsersId" property="sapcode"/></html:link></td>
<td><bean:write name="listOfSTPUsersId" property="firstname"/></td>
<td><bean:write name="listOfSTPUsersId" property="lastname"/></td>
</tr>
</logic:iterate>
</tbody>


</table>

这是我正在调用的操作。现在,如果我想发送带有 URL 的 stpcode,我应该做什么?请有人帮忙。

最佳答案

您正在制作一个html链接,您可以使用JSP EL来获取参数的值。

<html:link href="exelunitUpload.do?stpcode=${listOfSTPUsersId.stpcode}" ><bean:write name="listOfSTPUsersId"  property="sapcode"/></html:link>

关于java - 如何从表中的 struts 标记发送带有操作 URL 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24823909/

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