热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

如何使可编码类解码没有键/名称的json数组?

如何解决《如何使可编码类解码没有键/名称的json数组?》经验,为你挑选了1个好方法。

我正在尝试将以下JSON解码为可编码对象。

[
        {
            "Action": "CREDIT",
            "Status": 1,
            "TransactionDate": "2019-09-20T04:23:19.530137Z",
            "Description": "test"
        },
        {
            "Action": "CREDIT",
            "Status": 1,
            "TransactionDate": "2019-09-20T04:23:19.530137Z",
            "Description": "test"
        },
        {
            "Action": "CREDIT",
            "Status": 1,
            "TransactionDate": "2019-09-20T04:23:19.530137Z",
            "Description": "test"
        }
]

我的可编码类是..

struct UserWalletHistoryList: Codable {
    var historyList: [UserWalletHistory]
}


struct UserWalletHistory: Codable{
    var Action: String?
    var Status: Int?
    var TransactionDate: String?
    var Description: String?
}

但这并不成功。我认为这是因为变量名historyList,因为没有像historyListJSON 这样的键。那...那应该是什么?



1> vadian..:

删除 UserWalletHistoryList

struct UserWalletHistoryList: Codable {
   var historyList: [UserWalletHistory]
}

并解码一个数组 UserWalletHistory

JSONDecoder().decode([UserWalletHistory].self, from: data)

并且由于JSON提供了所有字典中的所有键,因此将struct成员声明为非可选成员,并添加CodingKeys将大写键映射为小写成员名称

struct UserWalletHistory : Codable {
    let action: String
    let status: Int
    let transactionDate: String
    let description: String

    private enum CodingKeys : String, CodingKey { 
        case action = "Action"
        case status = "Status"
        case transactiOnDate= "TransactionDate"
        case description = "Description" 
    }
}


推荐阅读
author-avatar
朴子字軒_755
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有