gpt4 book ai didi

java - JTable createAction 响应

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

我是 JTable 的新手,当我创建新条目时,表不会刷新,但当我更新或删除时,表不会刷新。在 Servlet 中,我为新创建的对象创建一个 arrayList(它已正确插入到数据库中),因此生成的 JSON 为

{"Result":"OK","Records":[{"ID":123456,"Description":"New Object"}]} 

知道为什么表格不刷新吗?

最佳答案

java脚本可能有错误。

例如。检查您的 jtable 字段。这是 java 脚本代码的示例。

<小时/>
 fields: {

customerid:{
title: 'No',
width: '4%',
key: true,
edit: false
},
customername:{
title: 'Customer Name',
width: '25%',
edit: true
},
}
<小时/>

这是带有 Spring 的服务器端 jtable

            //Convert Java Object to Json               
JsonElement element = gson.toJsonTree(showCoustomerList, new TypeToken<List<Customers>>() {}.getType());
JsonArray jsonArray = element.getAsJsonArray();
String listData=jsonArray.toString();
//Return Json in the format required by jTable plugin
listData="{\"Result\":\"OK\",\"Records\":"+listData+"}";
response.getWriter().print(listData);

关于java - JTable createAction 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21675908/

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