博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ext.util.Format.date与Ext.Date.format区别, 转换时间戳
阅读量:6819 次
发布时间:2019-06-26

本文共 934 字,大约阅读时间需要 3 分钟。

Ext.util.Format.date与Ext.Date.format区别, 转换时间戳

在Extjs中装时间戳使用如下两种都可以: 

Ext.util.Format.date(time,'U'); 
Ext.Date.format(time, 'U'); 
为了找到它们的区别,查看源代码,以Extjs 4.2 为例 
Ext.util.Format.date -> \src\util\Format.js 258

date: function(v, format) {    if (!v) {        return ""; } if (!Ext.isDate(v)) { v = new Date(Date.parse(v)); } return Ext.Date.dateFormat(v, format || Ext.Date.defaultFormat); },

Ext.Date.dateFormat -> \src\lang\Date.js 1186行

dateFormat: function(date, format) {    return utilDate.format(date, format); },

Ext.Date.format -> \src\lang\Date.js 1211行

format: function(date, format) {    var formatFunctions = utilDate.formatFunctions;    if (!Ext.isDate(date)) { return ''; } if (formatFunctions[format] == null) { utilDate.createFormat(format); } return formatFunctions[format].call(date) + ''; },

结论: 

Ext.util.Format.date 封装了 Ext.Date.dateFormat 封装了 Ext.Date.format 
所以直接使用 Ext.Date.format 的效率最高

转载地址:http://qtszl.baihongyu.com/

你可能感兴趣的文章
C# 使用Log4Net记录日志(基础篇)
查看>>
Android--去除EditText边框,添加下划线
查看>>
ajax请求webservice
查看>>
数据库记录模拟器——DataEmulator
查看>>
转 解析JDK 7的动态类型语言支持
查看>>
CSS绝对定位
查看>>
跟益达学Solr5之core.properties配置详解
查看>>
Zabbix分布式监控(zabbix-proxy)的配置关键点
查看>>
一个比较常用的关于php下的mysql数据操作类
查看>>
Android2.2 r1 API 中文文档系列(10) —— CheckBox
查看>>
xml基础总结
查看>>
ssh隧道及转发技术应用场景三例
查看>>
Android View 如何绘制
查看>>
javascript里阻止事件冒泡
查看>>
一个基于Maven的配置文件管理成功案例
查看>>
Ubuntu修改MySQL默认数据库目录
查看>>
充分发挥异步在 ASP.NET 中的强大优势
查看>>
高精度练习(hdoj1042)
查看>>
如何缩放SpriteBuilder中的scene
查看>>
iOS中block类型大全
查看>>