Alamofire SwiftyJson 解码器或反序列化

问题描述

我正在使用 Alamofire 和 SwiftyJson

以下是我的课

class InfoText {

let id: Int?
let title: String?
let description: String?
let tag: String?
let type: String?
let image: String?
var landingUrl: String?
let buttonText: String?



init(_ json: JSON) {
    
    id = json["id"].intValue
    title = json["title"].stringValue
    description = json["description"].stringValue
    tag = json["tag"].stringValue
    type = json["type"].stringValue
    image = json["image"].stringValue
    landingUrl = json["landing_url"].stringValue
    buttonText = json["button_text"].stringValue
}
}

以下是父类

class SelectedTabItems {
 var texts: [InfoText]?
init(_ json: JSON) {
          texts = json["texts"].arrayValue.map { InfoText($0) }
  
}

init() {

}


  }

现在我想根据类型从 InfoText 数组类型的 texts 数组中删除一些项目,我应该在侧 SelectedTabItems 类中进行 init 调用,还是有任何其他方法可以使用解码器或反序列化器来执行此操作。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)