Sencha 中的 Ext.Date.format()
Posted
技术标签:
【中文标题】Sencha 中的 Ext.Date.format()【英文标题】:Ext.Date.format() in Sencha 【发布时间】:2017-04-20 06:48:59 【问题描述】:我想获得像 2017-04-20 00:00:00
这样的日期格式目前我的代码是
this.ToDatePicker = Ext.create('Ext.form.field.Text',
xtype: 'textfield',
name: 'name',
labelAlign: 'top',
fieldLabel: 'Date Time',
value: Ext.Date.format(new Date(), "d-m-Y h:iA"),
listeners:
scope: this,
afterrender: function (c)
c.getEl().on('click', function (e)
console.log(e.target)
NewCssCal_DisableAfterToday(Ext.get(e.target).dom.id, 'ddmmyyyy', 'dropdown', true, 12)
);
);
需要更新Ext.Date.format(new Date(), "d-m-Y h:iA")
根据需要获取该日期格式。你有什么想法吗?
【问题讨论】:
【参考方案1】:根据Ext.Date
的文档,可以使用:
Ext.Date.format(new Date(), "Y-m-d h:i:s")
【讨论】:
在这种情况下,我将在没有时区的情况下完成日期,打印带有时区的完整日期的代码将是什么,例如"09-Oct-2020 02:54:58" IST
。在 doc aslo 中它不是 cear/以上是关于Sencha 中的 Ext.Date.format()的主要内容,如果未能解决你的问题,请参考以下文章
SENCHA:如何通过单击 SENCHA touch 中的添加/删除按钮动态添加/删除文本字段