问题标签 [dateformatter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - Swift - 将字符串转换为日期
仅在 iOS 11+ 上,我有这个错误:当用户在电话时间设置中禁用 24 小时模式时,我的字符串无法使用此代码解析为最新。
在其他iOS版本上,没有问题...
格式化程序是否缺少强制 24 小时模式的东西?
变量date
和beginHour
来自网络服务。
ios - Swift 4 中的时间格式 (hh:mm a) 不适用于 iOS 11.1.1
我正在转换格式(hh:mm a)的时间。它适用于所有其他版本,但它给 11.1.1 错误
当我将当前 DateFormatter 更改为时间时,它只给出 hh:mm
提前致谢 !
java - java - 如何在java中用两个或三个毫秒数字解析日期时间?
这是我将 String 解析为LocalDateTime
.
但这仅适用于输入 String like
但对于
with2017-11-21 18:11:14.05
失败。2017-11-21 18:11:14.057
DateTimeParseException
如何定义同时适用于.SS
和的格式化程序.SSS
?
oracle - 如何在sqlc中将Oracle插入查询日期格式更改为to_date
再会,
在 sqlcl 中,我想运行一个构建插入语句的查询。如:
但是每个日期值都返回为to_timestamp('date', 'format')
,而我想得到to_date('date', 'format')
。
我需要设置什么才能让这件事发生?
谢谢!!
编辑:
例如...我有两列 id 和 date 的表 datesaving。如果我运行此查询
SELECT /*insert*/ id,date FROM datesaving ;
我明白了
Insert into DATASAVING (ID, DATE) values (1,to_timestamp('2016-02-15 11:05:07','RRRR-MM-DD HH24:MI:SS'));
而我想得到这个
Insert into DATASAVING (ID, DATE) values (1,to_date('2016-02-15 11:05:07','RRRR-MM-DD HH24:MI:SS'));
我知道我可以更改 de nls_format,但我不知道如何更改它。
ios - Swift:从 JSON 解析日期
我从事项目,我必须从 php 服务器接收数据。一切正常,只有两件事:1.)无法解析日期。我知道这个问题在这里得到了回答,但在我的情况下没有一个变体起作用。这是我的代码
我跟着这个答案
Swift 的 JSONDecoder 在 JSON 字符串中有多种日期格式?
https://useyourloaf.com/blog/swift-codable-with-custom-dates/
这是我从日志中打印的内容
正如我们所看到的,数据包含“datareg”字段,但是在解析后无论如何(JSONDecoder,JSONSerialization,SwiftyJSON)我收到 nil 2)SSL_ERROR_ZERO_RETURN(6)
伙计们将不胜感激任何帮助。谢谢))
swift - 日期显示错误的月份(月 - 1)
我尝试在Swift 3中显示来自我的Node.js服务器的日期。
在 JSON 对象中接收日期,然后对其进行解析。
JSON 对象包含:
我在 Swift 中创建了一个函数:
然后,我解析我的 JSON 对象:
所有的作品,除了我的createdAt
日期比预期的月份早一个月。
示例: 6 janv. 2018 à 11:27
代替6 fév. 2018 à 11:27
swift - Swift DateFormatter 无法读取类属性,返回空字符串
我是 swift 新手,我正在尝试传递一个文本标签值,一个使用 DateFormatter 转换为字符串的日期。这是我的逻辑线程:
我首先在 Playground 中测试了该方法:
成功 !!这是我的标签所需的格式
然而,在调试我的代码后,我发现这个逻辑从这个代码块返回 nil:
在调试窗口中我运行:
我被困在这里一段时间试图修补和研究这个问题无济于事。
有人可以帮忙吗???
swift - 获取日期之间的月份列表
我有两个日期,即2/02/2016和19/03/2018
我正在尝试获取此日期之间的月份和年份
输出应该是
2016 年 2 月,2016 年 3 月......等等...... 2018 年 1 月,2018 年 2 月,2018 年 3 月。
尝试了一个月的差距代码 -
swift - swift - how to convert date from am/pm to 24 hour format
Here is the thing. I have my iPhone in am/pm format and iPhone Language in Spanish(MX). when I ask for the date, I get something like 2018-03-21 5:14:59 a. m. +0000 and it's a date type, then I try to convert it to string in 24hours format, and I get something like 2018-03-20 23:14:59 and it's a String type, BUT when I try to convert that string into date, I get the same date in am/pm format again 2018-03-21 5:14:59 a. m. +0000 I don't know what else to do, all I want is convert my am/pm date to 24hours date NOT STRING. Help me please. Here is my code in Swift 4
this is my console results
ios - 我们如何在严格模式下使用 Dateformatter 解析一个字符串?
我正在尝试使用具有设置格式“dd/MM/yyyy”的 Dateformatter 解析一个字符串“04-06-2018”。请注意,字符串中的分隔符是“-”而不是“/”。但 Dateformatter 解析正确。我不想要 Dateformatter 的这种聪明。如何在 JS 的矩库中启用严格模式进行格式化。