我试图连接我的 API 数据以在单元格中查看它,但似乎我无法得到我的响应,而且总是== nil
下面的代码描述了 Country.SWIFT // Model.SWIFT // Response.SWIFT,它显示了如何我可以使用 Codable 获取 JSON 响应吗? CountryCell.SWIFT 展示了我如何使用它来调用 API API 图像的链接:

国家.SWIFT
struct Country: Decodable {
var CountryName = ""
var CountryImage = ""
var objectId = ""
// MARK: - Coding Keys
enum CodingKeys: String, CodingKey {
case CountryName = "CountryName"
case CountryImage = "CountryImage"
case objectId = "objectId"
}
//MARK: - Json Decoder
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
// Parsing our attributes
self.CountryName …Run Code Online (Sandbox Code Playgroud) 我\xc2\xb4m 创建一个应用程序并NavigationLink在 Swift/SwiftUI 中使用,但它不再工作了。我现在不知道从什么时候开始,但两三周前,一切都工作正常。它NavigationLinks已经在代码中存在了更长的时间,工作正常。但今天我用了新的,但它们不起作用。它会在模拟器和真实设备上查看它们是否被禁用或其他情况。它们是灰色的,您无法单击它们,或者即使单击它们,也不会发生任何情况。有什么解决办法吗?
import SwiftUI\n\nstruct MedikamenteView: View {\n var body: some View {\n Form {\n NavigationLink(\n destination: ASSView(),\n label: {\n Text("ASS")\n })\n NavigationLink(\n destination: AdrenalinView(),\n label: {\n Text("Adrenalin")\n })\n }\n }\n}\n\nstruct MedikamenteView_Previews: PreviewProvider {\n static var previews: some View {\n MedikamenteView()\n }\n}\nRun Code Online (Sandbox Code Playgroud)\n例如,这个工作正常:
\nimport SwiftUI\n\nstruct RechtView: View {\n var body: some View {\n Form {\n NavigationLink(\n destination: ParagraphenView(),\n label: {\n Text("Paragraphen")\n })\n NavigationLink(\n destination: AufklaerungEinwilligungView(),\n label: {\n Text("Die Aufkl\xc3\xa4rung mit nachfolgender Einwilligung")\n …Run Code Online (Sandbox Code Playgroud)