我对 jqgrid 日期格式化程序有疑问。在我的数据库表中,我有这个日期格式“Ymd”,如“20120219”。这里是本专栏的全部代码:
$col = array();
$col["title"] = "Date";
$col["name"] = "date_dem";
$col["width"] = "40";
$col["editable"] = false;
$col["editoptions"] = array("size"=>20);
$col["formatter"] = "date"; // format as date
$col["formatoptions"] = array("srcformat"=>'Ymd',"newformat"=>'d/m/Y');
$cols[] = $col;
当我使用此代码时,我为每条记录得到相同的输出:“01/01/1970”。有人知道这个问题吗?
先进的 THX