format_date

将日期对象转换为日期字符串。这在向服务器发送数据时非常有用。

dateDate需要格式化的日期

Example

var dateToStr = gantt.date.date_to_str("%Y-%m-%d %H:%i");
gantt.templates.format_date = function(date){
    return dateToStr(date);
};

Details

详情请参见 日期格式规范

以 ISO 格式加载日期

Gantt 支持 ISO 日期格式。要使用它,只需重定义负责解析和格式化日期的函数:

gantt.templates.parse_date = function(date) { 
    return new Date(date);
};
gantt.templates.format_date = function(date) { 
    return date.toISOString();
};

动态更改日期格式

当你想动态更新日期格式时,也应同时更新parse_date模板,如下所示:

var cfg = gantt.config;
var strToDate = gantt.date.str_to_date(cfg.date_format, cfg.server_utc);
 
gantt.templates.parse_date = function(date){
    return strToDate(date);
};
See also
Back to top