AlamofireObjectmapper编码模型特性

时间:2017-08-17 05:23:53

标签: ios swift alamofire objectmapper

我正在使用FeatureApplication

getClasses()

Foo正在转换字符'默认转换为某种垃圾字符。

请向我推荐从我这边删除PercentEncoding的最佳方法

现在我的问题是我想在保存模型和Realm之前将removePercentEncoding应用于名称。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我已通过手动删除PercentEncoding解决了此问题。

 func mapping(map: Map) {
    if let tempName = map.JSON["Name"]{
                name = (tempName as! String).removingPercentEncoding
            }
}

我在我的模特中这样做。但我想在一个共同的地方做。有建议。