我有一個由多個json文件組成的文件夾。例如:迭代字符串,customObject和調用customObject初始化字典
a.json
b.json
c.json
c.json2
c.json3
每個文件都包含我需要插入到領域DB中的數據。 a =一種類型的對象,b =另一種類型的對象,並且c.json1,c.json2和c.json3都是相同類型的對象,但由於內容的數量,它們被分成3個文件。
而不是分別爲每種類型的對象創建一個for循環,我試圖創建一個字典,我可以迭代我的第二個for循環。
var filesToProcess : [String: Object] =
["a.json" : A(), "b.json" : B(), "c.json" : C()]
for (str, obj) in filesToProcess {
let numFiles = FileCounter().getNumFilesStartingWith(filename : str, url : unzippedDestinationUrl)
for i in 0...numFiles {
var append : String = ""
i == 0 ? (append = "") : (append = String(i))
if let jsonData = try? Data(contentsOf: unzippedDestinationUrl.appendingPathComponent(str+append)){
if let array = (try? JSONSerialization.jsonObject(with: jsonData, options: [])) as? [[String: Any]] {
for item in array{
let itemJsonStr = item["data"] as! String
let item = obj(jsonStr : itemJsonStr)
DispatchQueue(label: "background").async {
let realm = try! Realm()
try! realm.write {
realm.add(item)
}
}
}
}
}
}
}
其中A,B和C是對象像這樣:
import Foundation
import RealmSwift
import Realm
open class A : Object {
open dynamic var _id : String = ""
open dynamic var prop1 : Int = 0
open dynamic var prop2 : String = ""
open override class func primaryKey() -> String? {
return "_id"
}
required public init() {
super.init()
}
public init(jsonStr: String)
{
if let dataDict = try? JSONSerializer.toDictionary(jsonStr){
self._id = dataDict ["id"] as! String
self.prop1 = dataDict ["prop1"] as! Int
self.prop2 = dataDict ["prop2"] as! String
}
super.init()
}
required public init(realm: RLMRealm, schema: RLMObjectSchema) {
super.init(realm: realm, schema: schema)
}
required public init(value: Any, schema: RLMSchema) {
fatalError("init(value:schema:) has not been implemented")
}
}
然而,在我的在線循環:
let item = obj(jsonStr : itemJsonStr)
我接收到錯誤:
Cannot call value of Non-function type 'Object'
反正有嗎?是我試圖做的事情成爲可能,還是應該堅持已經做過的事情,即爲每種類型的對象創建具有重複代碼的單獨循環?注意A,B和C具有不同的屬性,但都是使用json類型的輸入字符串初始化的。