gpt4 book ai didi

json - 解码转义的 JSON 字符串

转载 作者:数据小太阳 更新时间:2023-10-29 03:27:43 26 4
gpt4 key购买 nike

<分区>

我正在尝试从一个 API 中解码一个 JSON 对象,该 API 在 JSON 内部有一个字符串,它本身是 JSON,但它被转义为一个字符串。它看起来像这样:

{
"duration": "126.61ms",
"startTime": "2016-02-19T20:01:17.884Z",
"total": 123,
"content": [
{
"dateCreated": "2016-02-19T20:01:09.181Z",
"lastUpdated": "2016-02-19T20:01:09.181Z",
"name": "name",
"stats": "{\"id\":545,\"lastUpdated\":\"2015-01-09T19:16:04.535Z\",\"all\":{\"runs\":{\"count\":123}"
}
}

我正在尝试将其解码为这样的结构:

type RunStatus struct {
Duration string `json:"duration"`
StartTime time.Time `json:"startTime"`
Total int `json:"total"`
Content []struct {
DateCreated time.Time `json:"dateCreated"`
LastUpdated time.Time `json:"lastUpdated"`
name string `json:"name"`
stats string `json:"stats"`
} `json:"content"`
}

将转义的 JSON 对象放入统计结构而不是字符串中的最佳方法是什么?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com