我从外部API接收毫秒时间戳作为JSON字符串属性。
{"time":"1526522699918"}
使用Serde将毫秒时间戳解析为字符串的最佳方法是什么?ts_milliseconds
选项将毫秒时间戳作为整数使用,但在使用字符串时会引发错误。
示例-Rust Playground
#[macro_use]
extern crate serde_derive;
extern crate chrono;
use chrono::serde::ts_milliseconds;
use chrono::{DateTime, Utc};
#[derive(Deserialize, Serialize)]
struct S {
#[serde(with = "ts_milliseconds")]
time: DateTime<Utc>,
}
fn main() {
serde_json::from_str::<S>(r#"{"time":1526522699918}"#).unwrap(); // millisecond timestamp as a integer
serde_json::from_str::<S>(r#"{"time":"1526522699918"}"#).unwrap(); // millisecond timestamp as an string
}
错误信息:
Error("invalid type: string \"1526522699918\", expected a unix timestamp in milliseconds", line: 1, column: 23)'
1条答案
按热度按时间vhmi4jdf1#
可以使用
serde_with
中的TimestampMilliSeconds
类型对DateTime
的序列化进行抽象。使用该类型,您可以从浮点数、整数或字符串进行序列化/反序列化。您需要为serde_with
启用chrono
功能。第一个参数(这里是
String
)配置序列化行为,在String
的情况下,这意味着DateTime
将被序列化为一个包含Unix时间戳(毫秒)的字符串。第二个论点(这里是
Flexible
)允许配置反序列化行为。Flexible
意味着它将从浮点数、整数和字符串反序列化而不返回错误。您可以使用它从问题中获取main
函数以运行。另一个选项是Strict
,它只反序列化第一个参数的格式。对于这个例子来说,这意味着它只反序列化时间为字符串,但是当遇到整数时会返回一个错误。