以表格格式显示JSON数据,每行对应一个提交按钮

问题描述 投票:0回答:1

/ *如何将json数据显示到JSP页面的表中,每行中都有一个提交按钮。单击提交按钮后,行数据应发送到servlet。

我已经使用Ajax从Servlet提取了json数据。

下面是我的ajax调用,用于从Servlet * /获取JSON数据>

function updateprofile(){
$.ajax({
url : 'abc/ConnectionInfo',
type: 'GET',
data: {},
data type: 'json'
}).done(function (data){
     renderProfiles(data);
}).fail(function (){
toaster.error("Eror...");
});
}

function 
renderProfiles(data){

//How can I implement this 
method to display all the 
data in table format with a 
button corresponding to 
each row.  And on clicking 
of the button it should 
send a profile ID to 
Servlet Post method.
}

/ *如何将json数据显示到JSP页面的表中,每行中都有一个提交按钮。单击提交按钮后,行数据应发送到servlet。我已经从Servlet中获取了json数据...

java json jsp servlets
1个回答
0
投票

您可以使用$.foreach循环来迭代json数据并将其显示在表中。演示代码(您需要根据需要在下面的代码中进行更改):

© www.soinside.com 2019 - 2024. All rights reserved.