gpt4 book ai didi

arrays - Swift 中的字典数组

转载 作者:可可西里 更新时间:2023-11-01 00:24:35 26 4
gpt4 key购买 nike

似乎找不到正确的语法。尝试从 json 文件中获取一组字典:

let books:Array = jsonDict["books"] as Array
//Cannot convert the expression's type Array<$T4> to type StringLiteralConvertible

let books:Array = jsonDict["books"] as Array<Dictionary>
//Reference to generic type "Dicionary" requires arguments in <...>

json 看起来像这样:

{
"id": "1",
"title": "title one",
"books": [
{
"id": "1",
"title": "book title one"
},
{
"id": "2",
"title": "book title two"
}
]
}

最佳答案

当您指定一个数组时,您还必须具体并列出数组中的内容。你还需要

您可能正在寻找的是:

let books = jsonDict["books"]

编译器应该能够推断出其中的内容。如果没有,您可以使用:

let books = jsonDict["books"] as Array<Dictionary<String, String>>

不需要类型转换书籍的类型说明符。

关于arrays - Swift 中的字典数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24541726/

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