推广一个函数,使用 ObjectMapper 和 swift 将 JSON 映射到对象 3.



我正在使用 ObjectMapper 在 Swift 3 中开发一个项目,我有很多使用相同的代码的函数。

进行转换的函数是这样的:

    func convertCategories (response:[[String : Any]]) {
    let jsonResponse = Mapper<Category>().mapArray(JSONArray: response )
    for item in jsonResponse!{
        print(item)
        let realm = try! Realm()
        try! realm.write {
            realm.add(item)
        }
    }
}

我想传递类别(映射器)作为参数,所以我可以将任何类型的类类型传递给函数并只使用一个函数来完成这项工作,它看起来像这样:

    func convertObjects (response:[[String : Any]], type: Type) {
    let jsonResponse = Mapper<Type>().mapArray(JSONArray: response )

尝试了很多想法,但没有结果,任何人都可以帮助我实现这一目标吗?

已编辑:对于所有有相同问题的人,解决方案是这样的:

    func convertObjects <Type: BaseMappable> (response:[[String : Any]], type: Type)
{
    let jsonResponse = Mapper<Type>().mapArray(JSONArray: response )

    for item in jsonResponse!{
        print(item)
        let realm = try! Realm()
        try! realm.write {
            realm.add(item as! Object)
        }
    }

}

调用该函数是:

self.convertObjects(response: json["response"] as! [[String : Any]], type: type)

我怀疑你只是在这里遇到了语法问题。你的意思是这样的:

func convertObjects<Type: BaseMappable>(response:[[String : Any]], type: Type)

你也可以这样写(有时更具可读性,特别是当事情变得复杂时):

func convertObjects<Type>(response:[[String : Any]], type: Type)
    where Type: BaseMappable {

您通常将其称为:

convertObjects(response: response, type: Category.self)

关键是convertObjects需要专门针对要转换的每个类型,并且需要声明一个类型参数 ( <Type> )。

相关内容

  • 没有找到相关文章

最新更新