程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> javaweb-使用easyui顯示數據時,日期類型顯示的object Object??

javaweb-使用easyui顯示數據時,日期類型顯示的object Object??

編輯:編程綜合問答
使用easyui顯示數據時,日期類型顯示的object Object??

圖片說明

後台代碼:
Map map = new HashMap();
map.put("tableName", "engage_major_release");
map.put("fields", "*");
map.put("orderField", "mre_id");
map.put("sqlwhere", "");
map.put("pageSize", 2);
map.put("pageIndex", 1);
map.put("orderType", 0);

List> list = this.zpBiz.queryEngage(map);
JsonConfig config = new JsonConfig();
//提供對實體中sql.Date的格式處理
config.registerJsonValueProcessor(java.sql.Date.class, new DateValueProcessor());

JSONArray json = JSONArray.fromObject(list,config);
System.out.println(json);
System.out.println(list.get(0).get("regist_time"));

response.setContentType("text/json;charset=UTF-8");
PrintWriter outPrintWriter = response.getWriter();

outPrintWriter.print(json);
outPrintWriter.close();
return null;

最佳回答:


發最後生成的json字符串看看

你那兩列配置的列值應該是json對象,對象調用toString後得到的就是你那個內容

你要給時間列配置formatter,返回這個列值對象的屬性

 formatter:function(value,row,index){return value.對象屬性值}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved