问题标签 [chrono-tz]
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.
rust - 获取指定时区的当前时间
使用Chrono-TZ 库,如何获取指定时区的当前时间?
我试过了
但这打印了我当前时区的日期时间,并附上了请求的时区标识符,从而给了我一个因时区差异而关闭的日期时间。
例如,在 18:30 AEST (UTC+10),我询问 PST (UTC-8) 中的当前时间。应该是太平洋标准时间 00:30。相反,我得到 18:30 PST
rust - 有没有办法将时区缩写解析为 Rust 中的时区偏移量?
有没有办法在 Rust 中将时区缩写(如EST
或MDT
)解析为时区偏移量(例如 -5 小时或 -7 小时)?chrono_tz板条箱似乎几乎可以做到这一点,但并不完全如此。