gpt4 book ai didi

java - 将Json数据填充到动态生成的表中

转载 作者:行者123 更新时间:2023-12-01 12:07:02 28 4
gpt4 key购买 nike

我使用 jquery 动态生成一个表。这是它的代码。

$(document).ready(function(){
// to generate the table for given number of blocks
var numberOfBlocks = ${projectDetails.noOfBlocks};
var i;
var _html = '<table class="table table-bordered table-striped">';

_html += '<tr>';
_html += '<th>Blockk No</th>';
_html += '<th>Lott No</th>';
_html += '<th>Extentt</th>';
_html += '<th>Land Value</th>';
_html += '<th>On Booking Amount</th>';
_html += '</tr>';

for (i = 1; i <= parseInt(numberOfBlocks); i++) {

_html += '<tr class="tblRw" id="row'+i+'">';
_html += '<td><input type="text" class="form-control" size="10" id="blockNo'+i+'" value="'+i+'"></td>';
_html += '<td><input type="text" class="form-control" size="10" id="lotNo'+i+'" ></td>';
_html += '<td><input type="text" class="form-control" size="10" id="extent'+i+'"></td>';
_html += '<td><input type="text" class="form-control" id="land_value'+i+'"></td>';
_html += '<td><input type="text" class="form-control" size="10" id="onbookingamount'+i+'"></td>';
_html += '</tr>';

}

_html += '</table>';
document.getElementById('results').innerHTML = _html;
});

我需要使用从 Controller 类返回的 Jason 响应中的数据填充表行。我就是这样做的。

public @ResponseBody JsonResponse  edit_blocks(@ModelAttribute(value="editblockbean") EditBlockBean editBlockBean , BindingResult result,ModelMap model) {

JsonResponse res = new JsonResponse();

if (result.hasErrors()) {
res.setStatus("FAIL");
res.setResult(result.getAllErrors());
}else{

List<EditBlockBean> ebb = branchservice.getBlocksForEdit(editBlockBean.getTitle());

res.setStatus("SUCCESS");
res.setResult(ebb);

}
return res;
}

我的 Jason 来自 Controller 类的响应包含类对象列表。这是类(class);

public class BlockBean {

private String blockNo;
private String lotNo;
private String extent;
private String landValue;
private String onBookingAmount;

// getters and setters

}

Jason 响应中,我有一个 BlockBean 对象列表。我需要将这些对象属性(例如 blockNo、lotNo、extent、...)分配给 jsp 页面中生成的动态表中每行的列。

这是我的 ajax 调用,用于获取 jason 响应。

         jQuery.ajax({
type : "GET",
url : "/TFProject/edit_blocks.htm",
data : "title=" + title + "&type=" +type,

success : function(response) {

if (response.status == "SUCCESS") {

// I need to know the code here.

} else {
errorInfo = "";

for (i = 0; i < response.result.length; i++) {
errorInfo += "<br>" + (i + 1) + ". "
+ response.result[i].code;
}
jQuery('#error').html(
"Please correct following errors: " + errorInfo);
jQuery('#info').hide('slow');
jQuery('#error').show('slow');
}
},
error : function(e) {
alert('Errorrrr: ' + e);
}
});

我需要知道的是,如果 Jason 响应状态成功,则用于使用 jason 响应详细信息填充表行的代码段。请你帮助我好吗?谢谢!

最佳答案

您的 JSON 响应返回方法应该类似于:

public@ResponseBody String edit_blocks(@ModelAttribute(value = "editblockbean") EditBlockBean editBlockBean, BindingResult result, ModelMap model) {    
List <EditBlockBean> editBlockBeanList = branchservice.getBlocksForEdit(editBlockBean.getTitle());
String jsonResult = "";
try {
if (editBlockBeanList != null && !editBlockBeanList.isEmpty()) {
JSONArray jsonArray = new JSONArray();
for (EditBlockBean ebb: editBlockBeanList) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("blockNo", ebb.getBlockNo());
jsonObject.put("lotNo", ebb.getLotNo());
jsonObject.put("extent", ebb.getExtent());
jsonObject.put("landValue", ebb.getLandValue());
jsonObject.put("onBookingAmount", ebb.getOnBookingAmount());
jsonArray.put(jsonObject);
}
jsonResult = jsonArray.toString();
}
} catch (Exception ex) {
jsonResult = "";
// append exception to log
}
return jsonResult;
}

这是编写 HTML 表格的 AJAX 方法的成功部分:

if (response != null && response != "") {
var EditBlockBeanArray = JSON.parse(response);

var _html = '<table class="table table-bordered table-striped">';
_html += '<tr>';
_html += '<th>Blockk No</th>';
_html += '<th>Lott No</th>';
_html += '<th>Extentt</th>';
_html += '<th>Land Value</th>';
_html += '<th>On Booking Amount</th>';
_html += '</tr>';

var i = 0;
while (i < EditBlockBeanArray.length) {
var ebbObject = EditBlockBeanArray[i];

_html += '<tr class="tblRw" id="row' + i + '">';
_html += '<td><input type="text" class="form-control" size="10" id="blockNo' + i + '" value="' + i + '">' + ebbObject.blockNo + '</td>';
_html += '<td><input type="text" class="form-control" size="10" id="lotNo' + i + '">' + ebbObject.lotNo + '</td>';
_html += '<td><input type="text" class="form-control" size="10" id="extent' + i + '">' + ebbObject.extent + '</td>';
_html += '<td><input type="text" class="form-control" id="land_value' + i + '">' + ebbObject.landValue + '</td>';
_html += '<td><input type="text" class="form-control" size="10" id="onbookingamount' + i + '">' + ebbObject.onBookingAmount + '</td>';
_html += '</tr>';

i++;
}

_html += '</table>';
document.getElementById('results').innerHTML = _html;
} else {
/* Your error code goes here */
}

关于java - 将Json数据填充到动态生成的表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27520550/

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