EXT显示json返回的时间格式数据

json返回时间的格式大多数都是以这种形式返回的,

"createTime":{"nanos":0,"time":1154834910000,"minutes":28,"seconds":30,"hours":11,"month":7,"year":106,"timezoneOffset":-480,"day":0,"date":6}

 

把这种格式显示在formPanel中

jsonReader = new Ext.data.JsonReader({
   root : 'root', // 返回的数据集合
   totalProperty : 'totalCount' // 总记录数
  }, Ext.data.Record.create([
    {
     name : 'createTime',
     mapping : 'createTime.time',
     type : 'date',
     dateFormat : 'yyyy-MM-dd',
     convert : function(v) { // 采用转换形式
          return new Date(v)
     }]))

 

把这种格式显示在gridPanel中

{
header : "创立时间",
width : 80,
dataIndex : 'createTime',
renderer : function(v) {
     return new Date(v).format('Y-m-d')
},
sortable : true
}

 

 

你可能感兴趣的:(html,json,ext,Blog)