我正在使用Feature
和Application
getClasses()
Foo
正在转换字符'默认转换为某种垃圾字符。
请向我推荐从我这边删除PercentEncoding的最佳方法
现在我的问题是我想在保存模型和Realm之前将removePercentEncoding应用于名称。
我该怎么做?
答案 0 :(得分:0)
我已通过手动删除PercentEncoding解决了此问题。
func mapping(map: Map) {
if let tempName = map.JSON["Name"]{
name = (tempName as! String).removingPercentEncoding
}
}
我在我的模特中这样做。但我想在一个共同的地方做。有建议。