我试图不设置仅在JSON中存在的值。我想做这样的事情:
if (map["doc.type"] != nil) {
picturePath <- map["doc.type"]
}
我正在使用此ObjectMapper框架:
https://github.com/Hearst-DD/ObjectMapper
最佳答案
如果要基于不同的键完全填充picturePath,最好的方法可能是使用帮助程序变量,然后根据它们分配PicturePath。
例如。:
var optionalPicturePath: String? = map["doc.type"]
if optionalPicturePath != nil {
picturePath = optionalPicturePath
}