CoreData और SwiftUI: पर्यावरण में संदर्भ एक स्थिर स्टोर समन्वयक से जुड़ा नहीं है


10

मैं होमवर्क मैनेजिंग ऐप बनाकर खुद को कोर डेटा सिखाने की कोशिश कर रहा हूं। मेरा कोड ठीक बनाता है और जब तक मैं सूची में एक नया असाइनमेंट जोड़ने का प्रयास नहीं करता तब तक ऐप ठीक चलता है। मुझे Thread 1: EXC_BREAKPOINT (code=1, subcode=0x1c25719e8)निम्न पंक्ति में यह त्रुटि मिलती है ForEach(courses, id: \.self) { course in:। कंसोल में भी यह त्रुटि है Context in environment is not connected to a persistent store coordinator: <NSManagedObjectContext: 0x2823cb3a0>:।

मैं कोर डेटा के बारे में बहुत कम जानता हूं और इस मुद्दे के रूप में नुकसान में हूं। मैंने डेटा मॉडल में "असाइनमेंट" और "कोर्स" इकाइयां स्थापित की हैं, जहां कोर्स का असाइनमेंट के लिए एक-से-कई संबंध हैं। प्रत्येक असाइनमेंट को एक विशेष पाठ्यक्रम के तहत वर्गीकृत किया जाएगा।

यह उस दृश्य के लिए कोड है जो सूची में एक नया असाइनमेंट जोड़ता है:

    struct NewAssignmentView: View {

    @Environment(\.presentationMode) var presentationMode
    @Environment(\.managedObjectContext) var moc
    @FetchRequest(entity: Course.entity(), sortDescriptors: []) var courses: FetchedResults<Course>

    @State var name = ""
    @State var hasDueDate = false
    @State var dueDate = Date()
    @State var course = Course()

    var body: some View {
        NavigationView {
            Form {
                TextField("Assignment Name", text: $name)
                Section {
                    Picker("Course", selection: $course) {
                        ForEach(courses, id: \.self) { course in
                            Text("\(course.name ?? "")").foregroundColor(course.color)
                        }
                    }
                }
                Section {
                    Toggle(isOn: $hasDueDate.animation()) {
                        Text("Due Date")
                    }
                    if hasDueDate {
                        DatePicker(selection: $dueDate, displayedComponents: .date, label: { Text("Set Date:") })
                    }
                }
            }
            .navigationBarTitle("New Assignment", displayMode: .inline)
            .navigationBarItems(leading: Button(action: {
                self.presentationMode.wrappedValue.dismiss()
            }, label: { Text("Cancel") }),
                                trailing: Button(action: {
                                    let newAssignment = Assignment(context: self.moc)
                                    newAssignment.name = self.name
                                    newAssignment.hasDueDate = self.hasDueDate
                                    newAssignment.dueDate = self.dueDate
                                    newAssignment.statusString = Status.incomplete.rawValue
                                    newAssignment.course = self.course
                                    self.presentationMode.wrappedValue.dismiss()
                                }, label: { Text("Add").bold() }))
        }
    }
}

संपादित करें: यहाँ AppDelegate में कोड है जो लगातार कंटेनर सेट करता है:

lazy var persistentContainer: NSPersistentCloudKitContainer = {
    let container = NSPersistentCloudKitContainer(name: "test")
    container.loadPersistentStores(completionHandler: { (storeDescription, error) in
        if let error = error as NSError? {
            fatalError("Unresolved error \(error), \(error.userInfo)")
        }
    })
    return container
}()

और पर्यावरण को स्थापित करने वाले सीनडेलेगेट में कोड:

    func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
    // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
    // If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
    // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).

    // Get the managed object context from the shared persistent container.
    let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext

    // Create the SwiftUI view and set the context as the value for the managedObjectContext environment keyPath.
    // Add `@Environment(\.managedObjectContext)` in the views that will need the context.
    let contentView = ContentView().environment(\.managedObjectContext, context)

    // Use a UIHostingController as window root view controller.
    if let windowScene = scene as? UIWindowScene {
        let window = UIWindow(windowScene: windowScene)
        window.rootViewController = UIHostingController(rootView: contentView)
        self.window = window
        window.makeKeyAndVisible()
    }
}

आप वातावरण में प्रबंधित ऑब्जेक्ट संदर्भ कहां जोड़ते हैं? वह प्रबंधित वस्तु संदर्भ कैसे बनाया जाता है? ऐसा लगता है कि आपने इसे लगातार स्टोर संयोजक के साथ नहीं जोड़ा है,
पॉलव 11

मैंने उस कोड को जोड़ा जहां मैं अपने मूल पोस्ट में आपके लिए पर्यावरण में moc जोड़ता हूं।
केविन ओल्मेट्स

@KevinOlmats क्या मेरे जवाब ने मदद की?
पूर्वाह्न

जांचें कि आपने पर्यावरण के माध्यम से एक संदर्भ सौंपा है.environment(\.managedObjectContext, viewContext)
onmyway133

@ onmyway133 यह सही उत्तर है
केविन ओल्मेट्स

जवाबों:


8

आप वास्तव में संदर्भ को नहीं बचा रहे हैं। आपको निम्नलिखित कार्य करना चाहिए:

let newAssignment = Assignment(context: self.moc)
newAssignment.name = self.name
newAssignment.hasDueDate = self.hasDueDate
newAssignment.dueDate = self.dueDate
newAssignment.statusString = Status.incomplete.rawValue
newAssignment.course = self.course

do {
    try self.moc.save()
} catch {
    print(error)
}

इसके अलावा आपका @FetchRequest(...)इस तरह दिख सकता है:

@FetchRequest(fetchRequest: CourseItem.getCourseItems()) var courses: FetchedResults<CourseItem>

आप निम्न CourseItemकी sortDescriptorsतरह अपनी कक्षा को संशोधित कर सकते हैं :

public class CourseItem: NSManagedObject, Identifiable {
    @NSManaged public var name: String?
    @NSManaged public var dueDate: Date?
    // ...etc
}

extension CourseItem {
    static func getCourseItems() -> NSFetchRequest<CourseItem> {
        let request: NSFetchRequest<CourseItem> = CourseItem.fetchRequest() as! NSFetchRequest<CourseItem>

        let sortDescriptor = NSSortDescriptor(key: "dueDate", ascending: true)

        request.sortDescriptors = [sortDescriptor]

        return request
    }
}

फिर आप ForEach(...)निम्न की तरह अपने को संशोधित करेंगे और वस्तुओं के विलोपन को भी आसानी से संभाल सकते हैं:

ForEach(self.courses) { course in
    // ...
}.onDelete { indexSet in
    let deleteItem = self.courses[indexSet.first!]
    self.moc.delete(deleteItem)

    do {
        try self.moc.save()
    } catch {
        print(error)
    }
}

एक चीज जिसे आप सुनिश्चित करना चाहते हैं, वह यह है कि "क्लास नेम" "कोर्स इटेम" पर सेट है, जो उस CourseItemक्लास से मेल खाता है जिसे हमने पहले बनाया था।

बस अपनी फ़ाइल में ENTITIES पर क्लिक करें .xcdatamodeIdऔर निम्न को सब कुछ सेट करें ( मॉड्यूल से "वर्तमान उत्पाद मॉड्यूल" और कोडगन को "मैनुअल / कोई नहीं" सहित):

यहां छवि विवरण दर्ज करें

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.