JSONオブジェクトをRESTFUL APIで取得し、コアデータエンティティに挿入しています。Swift - Date From String Error
一つのそのような実体が予定され、ここに私のエンティティプロパティここ
extension Appointment {
@nonobjc public class func fetchRequest() -> NSFetchRequest<Appointment> {
return NSFetchRequest<Appointment>(entityName: "Appointment");
}
@NSManaged public var date: Date?
@NSManaged public var id: Int32
@NSManaged public var message: String?
@NSManaged public var patient_name: String?
@NSManaged public var doctor: Doctor?
}
である私は、ここでエンティティに
for(_,jsonData):(String, JSON) in self.data["appointment"]["list"] {
// Construct appointment date
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm"
let appointmentDate = dateFormatter.date(from: jsonData["date"].string!)!
print(appointmentDate)
// Preare appointment entity for inserting
let appointment = NSEntityDescription.insertNewObject(forEntityName: "Appointment", into: moc)
appointment.setValue(jsonData["id"].int32, forKey: "id")
appointment.setValue(appointmentDate, forKey: "date")
appointment.setValue(jsonData["message"].int32, forKey: "message")
appointment.setValue(jsonData["patient_name"].int32, forKey: "patient_name")
do {
try moc.save()
} catch {
fatalError("\(error)")
}
}
を挿入するために使用していたコードは、私がから取得、関連JSONされていますAPI
"appointment": {
"list": {
"id": 1,
"date": "2017-07-03 17:30",
"message": "Some message is usefule here",
"patient_name": "John Doe",
"doctor_id": 4
}
}
私がコードを実行すると、次のエラーが表示されます。
fatal error: unexpectedly found nil while unwrapping an Optional value
コードに問題がありますか?
ありがとうございました。
を確認してくださいことその上で 'date()'を呼び出す前にdateFormatter' –
ここで同じ問題があります:https://stackoverflow.com/questions/40692378/dateformatter-doesnt-return-date-for-hhmmss? –
私は問題があなたのJSON応答の各jsonオブジェクトに日付があることを確認していますか? –