json 的过滤器数组具有某些 属性 Swift
Filter array of json having certain property Swift
我只是 swift 的初学者。
我想过滤具有某些 属性 的 json 对象数组,并从中创建新的 json 数组。
我的数组是:
[{
"marked" : 4,
"attempted" : true,
"correct" : 4,
"subject" : 1,
"status" : true,
"question" : 550,
"answer" : 34256,
"time" : 23,
"score" : 10,
"chapter" : 26
}, {
"marked" : 1,
"attempted" : true,
"correct" : 1,
"subject" : 1,
"status" : true,
"question" : 566,
"answer" : 34317,
"time" : 33,
"score" : 14,
"chapter" : 26
}, {
"marked" : 4,
"attempted" : true,
"correct" : 1,
"subject" : 1,
"status" : true,
"question" : 590,
"answer" : 34276,
"time" : 33,
"score" : 15,
"chapter" : 26
}]
我想要一个数组,其中 marked
和 correct
具有相同的值。
我如何在 swift 中做到这一点?
将其转换为包含对象的数组后,您可以简单地使用。
myArray.filter { [=10=].marked == [=10=].correct }
如果只是字典,可以尝试按键查找
myArray.filter { [=11=]["marked"]! == [=11=]["correct"]! }
我只是 swift 的初学者。 我想过滤具有某些 属性 的 json 对象数组,并从中创建新的 json 数组。
我的数组是:
[{
"marked" : 4,
"attempted" : true,
"correct" : 4,
"subject" : 1,
"status" : true,
"question" : 550,
"answer" : 34256,
"time" : 23,
"score" : 10,
"chapter" : 26
}, {
"marked" : 1,
"attempted" : true,
"correct" : 1,
"subject" : 1,
"status" : true,
"question" : 566,
"answer" : 34317,
"time" : 33,
"score" : 14,
"chapter" : 26
}, {
"marked" : 4,
"attempted" : true,
"correct" : 1,
"subject" : 1,
"status" : true,
"question" : 590,
"answer" : 34276,
"time" : 33,
"score" : 15,
"chapter" : 26
}]
我想要一个数组,其中 marked
和 correct
具有相同的值。
我如何在 swift 中做到这一点?
将其转换为包含对象的数组后,您可以简单地使用。
myArray.filter { [=10=].marked == [=10=].correct }
如果只是字典,可以尝试按键查找
myArray.filter { [=11=]["marked"]! == [=11=]["correct"]! }